Beispiel #1
0
 public CustomEntry(CustomEntryParams customParams)
 {
     if (customParams.MaxLength > 0)
     {
         base.TextChanged += EnforceMaxLength;
         parameters        = customParams;
     }
 }
 public InputCodeEntry(CustomEntryParams customParams)
 {
     if(customParams.MaxLength > 0)
     {
         base.TextChanged += EnforceMaxLength;
         parameters = customParams;
     }
 }