コード例 #1
0
ファイル: Helpers.cs プロジェクト: andyhebear/extramegablob
 public virtual void SetListBoxSelectedIndex(ListBox Object, Int32 Value)
 {
     if (this.InvokeRequired)
     {
         SetListBoxSelectedIndexDelegate dele = new SetListBoxSelectedIndexDelegate(SetListBoxSelectedIndex2);
         this.Invoke(dele, new object[] { Object, Value });
     }
     else
     {
         SetListBoxSelectedIndex2(Object, Value);
     }
 }
コード例 #2
0
ファイル: Windows.cs プロジェクト: Sajaki/uniuploader
 public virtual void SetListBoxSelectedIndex(ListBox Object, Int32 Value)
 {
     if (this.InvokeRequired)
     {
         SetListBoxSelectedIndexDelegate dele = new SetListBoxSelectedIndexDelegate(SetListBoxSelectedIndex2);
         this.Invoke(dele, new object[] { Object, Value });
     }
     else
     {
         SetListBoxSelectedIndex2(Object, Value);
     }
 }