/// <summary> Notify me when the CPR number text changes.</summary>
 public void addCPRTextChangedHandler(TextInputChangedHandler handler)
 {
     TextBox tbc = txbCPRNO;
     tbc.TextChanged += (o, eA) => handler(tbc.Text);
 }
Example #2
0
        /// <summary> Notify me when the CPR number text changes.</summary>
        public void addCPRTextChangedHandler(TextInputChangedHandler handler)
        {
            TextBox tbc = txbCPRNO;

            tbc.TextChanged += (o, eA) => handler(tbc.Text);
        }