private void cbValue_SelectionChangeCommitted(object sender, EventArgs e)
 {
     try
     {
         SelectionChangeCommitted?.Invoke(sender, e);
     }
     catch (Exception ex)
     {
         Console.WriteLine(ex.ToString());
     }
 }
Exemple #2
0
 ///<summary></summary>
 private void OnSelectionChangeCommitted(object sender, EventArgs e)
 {
     SelectionChangeCommitted?.Invoke(sender, e);
 }
 /// <summary>
 /// Raises the SelectionChangeCommitted event.
 /// </summary>
 /// <param name="e">An EventArgs containing the event data.</param>
 protected virtual void OnSelectionChangeCommitted(EventArgs e)
 {
     SelectionChangeCommitted?.Invoke(this, e);
 }