コード例 #1
0
 private void PerformExpandOrCollapse(SWF.ComboBox combobox, bool droppedDown)
 {
     if (combobox.InvokeRequired == true)
     {
         combobox.BeginInvoke(new PerformExpandOrCollapseDelegate(PerformExpandOrCollapse),
                              new object [] { combobox, droppedDown });
         return;
     }
     combobox.DroppedDown = droppedDown;
 }
コード例 #2
0
ファイル: ObjectInterface.cs プロジェクト: facchinm/SiRFLive
 public void SetComboBoxText(ComboBox anything, string text)
 {
     anything.BeginInvoke((MethodInvoker)delegate
     {
         try
         {
             anything.Text = text;
         }
         catch
         {
         }
     });
 }
コード例 #3
0
ファイル: ObjectInterface.cs プロジェクト: facchinm/SiRFLive
 public void SetComboBoxState(ComboBox anything, bool state)
 {
     anything.BeginInvoke((MethodInvoker)delegate
     {
         try
         {
             anything.Enabled = state;
         }
         catch
         {
         }
     });
 }
コード例 #4
0
ファイル: ObjectInterface.cs プロジェクト: facchinm/SiRFLive
 public void SetComboBoxSelectItem(ComboBox anything, string text)
 {
     anything.BeginInvoke((MethodInvoker)delegate
     {
         try
         {
             anything.SelectedItem = text;
         }
         catch
         {
         }
     });
 }