コード例 #1
0
ファイル: Helpers.cs プロジェクト: andyhebear/extramegablob
 public virtual String getControlText(Control Control)
 {
     if (this.InvokeRequired)
     {
         GetControlTextDelegate dele = new GetControlTextDelegate(getControlText2);
         return((String)this.Invoke(dele, new object[] { Control }));
     }
     else
     {
         return(getControlText2(Control));
     }
 }
コード例 #2
0
ファイル: Windows.cs プロジェクト: Sajaki/uniuploader
 public virtual String getControlText(Control Control)
 {
     if (this.InvokeRequired)
     {
         GetControlTextDelegate dele = new GetControlTextDelegate(getControlText2);
         return (String)this.Invoke(dele, new object[] { Control });
     }
     else
     {
         return getControlText2(Control);
     }
 }