Exemplo n.º 1
0
 protected virtual void OnSelectComboBox(SelectComboBoxEventArgs e)
 {
     if (SelectComboBox != null)
     {
         SelectComboBox(this, e);
     }
 }
Exemplo n.º 2
0
        private SelectComboBoxEventArgs OnSelectComboBoxForOut()
        {
            SelectComboBoxEventArgs args = new SelectComboBoxEventArgs();

            OnSelectComboBox(args);

            return(args);
        }
Exemplo n.º 3
0
        private SelectComboBoxEventArgs OnSelectComboBox(int item)
        {
            SelectComboBoxEventArgs args = new SelectComboBoxEventArgs(item);

            OnSelectComboBox(args);

            return(args);
        }