コード例 #1
0
 protected virtual void OnSelectComboBox(SelectComboBoxEventArgs e)
 {
     if (SelectComboBox != null)
     {
         SelectComboBox(this, e);
     }
 }
コード例 #2
0
        private SelectComboBoxEventArgs OnSelectComboBoxForOut()
        {
            SelectComboBoxEventArgs args = new SelectComboBoxEventArgs();

            OnSelectComboBox(args);

            return(args);
        }
コード例 #3
0
        private SelectComboBoxEventArgs OnSelectComboBox(int item)
        {
            SelectComboBoxEventArgs args = new SelectComboBoxEventArgs(item);

            OnSelectComboBox(args);

            return(args);
        }