コード例 #1
0
ファイル: Form1.cs プロジェクト: skaran226/OLD_PICSERVER_1.3
 public void SetButtonText(Button btPassButton, string sPassText)
 {
     if (btPassButton.InvokeRequired)
     {
         SetButtonTextCallback d = new SetButtonTextCallback(SetButtonText);
         this.Invoke(d, new object[] { btPassButton, sPassText });
     }
     else
     {
         btPassButton.Text = sPassText;
     }
 }
コード例 #2
0
ファイル: WizardBase.cs プロジェクト: schifflee/PKStudio
 protected void SetButtonText(Button b, string value)
 {
     if (b.InvokeRequired)
     {
         SetButtonTextCallback d = new SetButtonTextCallback(SetButtonText);
         b.BeginInvoke(d, new object[] { b, value });
     }
     else
     {
         b.Text = value;
     }
 }
コード例 #3
0
ファイル: Terminal.cs プロジェクト: koson/test
 private void SetButtonText(Button control, string data)
 {
     if (control.InvokeRequired)
     {
         SetButtonTextCallback d = new SetButtonTextCallback(SetButtonText);
         this.Invoke(d, new object[] { control, data });
     }
     else
     {
         control.Text = data;
     }
 }
コード例 #4
0
ファイル: mainpanel.cs プロジェクト: justinctlam/MarbleStrike
 private void SetButtonText(string text)
 {
     if (mConnectButton.InvokeRequired)
     {
         SetButtonTextCallback d = new SetButtonTextCallback(SetButtonText);
         this.Invoke(d, new object[] { text });
     }
     else
     {
         mConnectButton.Text = text;
     }
 }
コード例 #5
0
ファイル: GridMonUI.cs プロジェクト: Chryst/Questor
 public void SetButtonText(string text)
 {
     if (this.InvokeRequired)
     {
         SetButtonTextCallback cb = new SetButtonTextCallback(SetButtonText);
         this.Invoke(cb, new object[] { text });
     }
     else
     {
         btnStartStop.Text = text;
     }
 }
コード例 #6
0
ファイル: frmMain.cs プロジェクト: sigmastk/Questor
 public void SetButtonText(string text)
 {
     if (this.InvokeRequired)
     {
         SetButtonTextCallback cb = new SetButtonTextCallback(SetButtonText);
         this.Invoke(cb, new object[] { text });
     }
     else
     {
         btnStartStop.Text = text;
     }
 }
コード例 #7
0
ファイル: MainForm.cs プロジェクト: Throwy/mousefriend
 private void SetButtonText(Button Control, string Text)
 {
     if (Control.InvokeRequired)
     {
         var d = new SetButtonTextCallback(SetButtonText);
         this.Invoke(d, Control, Text);
     }
     else
     {
         Control.Text = Text;
     }
 }
コード例 #8
0
ファイル: MainForm.cs プロジェクト: siga111/BachelorThesis
 private void SetButtonTextSafely(Button button, string text)
 {
     if (button.InvokeRequired)
     {
         SetButtonTextCallback d = new SetButtonTextCallback(SetButtonTextSafely);
         Invoke(d, new object[] { button, text });
     }
     else
     {
         button.Text = text;
     }
 }
コード例 #9
0
ファイル: hyperload.cs プロジェクト: kammce/SJSU-DEV-Linux
 private void SetButtonText(string theText, Button theButton)
 {
     if (theButton.InvokeRequired)
     {
         SetButtonTextCallback d = new SetButtonTextCallback(SetButtonText);
         this.Invoke(d, new object[] { theText, theButton });
     }
     else
     {
         theButton.Text = theText;
     }
 }
コード例 #10
0
ファイル: WizardBase.cs プロジェクト: AlexandrSurkov/PKStudio
 protected void SetButtonText(Button b, string value)
 {
     if (b.InvokeRequired)
     {
         SetButtonTextCallback d = new SetButtonTextCallback(SetButtonText);
         b.BeginInvoke(d, new object[] { b, value });
     }
     else
     {
         b.Text = value;
     }
 }
コード例 #11
0
ファイル: Form1.cs プロジェクト: henryc804/marshmallow
 private void SetButtonText(Button button, string text)
 {
     if (button.InvokeRequired)
     {
         SetButtonTextCallback d = new SetButtonTextCallback(SetButtonText);
         this.Invoke(d, new object[] { button, text });
     }
     else
     {
         button.Text = text;
     }
 }
コード例 #12
0
ファイル: MainForm.cs プロジェクト: ApexWeed/AutoClicker
 private void SetButtonText(Button Control, string Text)
 {
     if (Control.InvokeRequired)
     {
         var d = new SetButtonTextCallback(SetButtonText);
         this.Invoke(d, Control, Text);
     }
     else
     {
         Control.Text = Text;
     }
 }