当前位置: 首页>>代码示例>>C#>>正文


C# Label.BeginInvoke方法代码示例

本文整理汇总了C#中System.Windows.Forms.Label.BeginInvoke方法的典型用法代码示例。如果您正苦于以下问题:C# Label.BeginInvoke方法的具体用法?C# Label.BeginInvoke怎么用?C# Label.BeginInvoke使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在System.Windows.Forms.Label的用法示例。


在下文中一共展示了Label.BeginInvoke方法的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: SetLabelText

 public static void SetLabelText(Label label, string text)
 {
     if (label.InvokeRequired)
     {
         label.BeginInvoke(new Action(() =>
         {
             label.Text = text;
         }));
     }
     else
     {
         label.Text = text;
     }
 }
开发者ID:peterwillcn,项目名称:Avalon-nano,代码行数:14,代码来源:SafeControlUpdater.cs

示例2: UpdateStatus

 private void UpdateStatus(Label lbl, string status)
 {
     if (lbl.InvokeRequired)
     {
         lbl.BeginInvoke(new Action<Label, string>(UpdateStatus), lbl, status);
     }
     else
     {
         lbl.Text = status;
         lbl.Update();
         lbl.Parent.Update();
     }
 }
开发者ID:hmanjarawala,项目名称:GitRepo,代码行数:13,代码来源:Form1.cs

示例3: Success

 private void Success(Label l)
 {
     l.BeginInvoke(new EventHandler(delegate
     {
         l.Text = "Passed";
         l.ForeColor = Color.Green;
     }));
 }
开发者ID:Xileck,项目名称:tibiaapi,代码行数:8,代码来源:MainForm.cs

示例4: SetLabelText

 public void SetLabelText(Label anything, string text)
 {
     anything.BeginInvoke((MethodInvoker)delegate
     {
         try
         {
             anything.Text = text;
         }
         catch
         {
         }
     });
 }
开发者ID:facchinm,项目名称:SiRFLive,代码行数:13,代码来源:ObjectInterface.cs

示例5: SetLabelText

 private void SetLabelText(Label label, string text)
 {
     // InvokeRequired required compares the thread ID of the
     // calling thread to the thread ID of the creating thread.
     // If these threads are different, it returns true.
     if (label.InvokeRequired)
     {
         SetLabelTextCallback d = new SetLabelTextCallback(SetLabelText);
         label.BeginInvoke(d, new object[] { label, text });
     }
     else
     {
         label.Text = text;
     }
 }
开发者ID:AlexandrSurkov,项目名称:PKStudio,代码行数:15,代码来源:ConvertationPage.cs

示例6: SetLabelText

 protected void SetLabelText(Label b, string value)
 {
     if (b.InvokeRequired)
     {
         SetLabelTextCallback d = new SetLabelTextCallback(SetLabelText);
         b.BeginInvoke(d, new object[] { b, value });
     }
     else
     {
         b.Text = value;
     }
 }
开发者ID:AlexandrSurkov,项目名称:PKStudio,代码行数:12,代码来源:WizardBase.cs

示例7: CrossThreadUpdateLabel

 /// <summary>
 /// 实现了跨线程对Label文字进行更新
 /// </summary>
 /// <param name="lb">需要更新的Label</param>
 /// <param name="strMsg">需要更新的文字</param>
 public void CrossThreadUpdateLabel(Label lb, string strMsg)
 {
     if (lb.InvokeRequired)
     {
         DelegateforUpdateLabel del = new DelegateforUpdateLabel(CrossThreadUpdateLabel);
         lb.BeginInvoke(del, new Object[] { lb, strMsg });
     }
     else
     {
         lb.Text = strMsg;
     }
 }
开发者ID:rayviso,项目名称:Excel-,代码行数:17,代码来源:Form.cs

示例8: SetText

 public static void SetText(Label varLabel, string newText)
 {
     if (varLabel.InvokeRequired)
     {
         varLabel.BeginInvoke(new MethodInvoker(() => SetText(varLabel, newText)));
     }
     else
     {
         varLabel.Text = newText;
     }
 }
开发者ID:grumpycatsaysno,项目名称:SitefinityMailServer,代码行数:11,代码来源:MailServerUI.cs

示例9: SetText

 private static void SetText(Label box, string text)
 {
     if (box.InvokeRequired) // 
         box.BeginInvoke(new Action(() => SetText(box, text)));
     else
         box.Text = text;
 }
开发者ID:jalelderbali,项目名称:robotsoft-v1.0,代码行数:7,代码来源:Form1.cs

示例10: lblSetText

 private void lblSetText(Label lbl, string text)
 {
     if (lbl.InvokeRequired)
     {
         lblSetTextCallback d = new lblSetTextCallback(lblSetText);
         lbl.BeginInvoke(d, new object[] { lbl, text });
     }
     else
     {
         lbl.Text = text;
     }
 }
开发者ID:paperwork,项目名称:sourceremotecontrol,代码行数:12,代码来源:Ramp61131-2.cs


注:本文中的System.Windows.Forms.Label.BeginInvoke方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。