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


C# ListBox.BeginInvoke方法代码示例

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


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

示例1: CrossThreadClearListboxItem

 /// <summary>
 /// 跨线程清除listbox的item
 /// </summary>
 /// <param name="lb"></param>
 public void CrossThreadClearListboxItem(ListBox lb)
 {
     if (lb.InvokeRequired)
     {
         DelegateforClearListboxItem del = new DelegateforClearListboxItem(CrossThreadClearListboxItem);
         lb.BeginInvoke(del, new object[] { lb });
     }
     else
     {
         lb.Items.Clear();
     }
 }
开发者ID:rayviso,项目名称:Excel-,代码行数:16,代码来源:Form.cs

示例2: Remove

 public void Remove(ClientInfo item, ListBox list)
 {
     if (list.InvokeRequired)
     {
         list.BeginInvoke(new MethodInvoker(delegate
         {
             Remove(item, list);
         }));
     }
     else
     {
         list.Items.Remove(item);
     }
 }
开发者ID:GennadyKharlam,项目名称:TCP-C-Sharp-server,代码行数:14,代码来源:SocketServerForm.cs

示例3: GetSelectedListBoxIdx

 public string GetSelectedListBoxIdx(ListBox anything, int idx)
 {
     string rStr = string.Empty;
     anything.BeginInvoke((MethodInvoker)delegate
     {
         try
         {
             rStr = (string) anything.Items[idx];
         }
         catch
         {
         }
     });
     return rStr;
 }
开发者ID:facchinm,项目名称:SiRFLive,代码行数:15,代码来源:ObjectInterface.cs

示例4: SetSelectedListBoxIdx

 public void SetSelectedListBoxIdx(ListBox anything, int idx, bool state)
 {
     anything.BeginInvoke((MethodInvoker)delegate
     {
         try
         {
             anything.SetSelected(idx, state);
         }
         catch
         {
         }
     });
 }
开发者ID:facchinm,项目名称:SiRFLive,代码行数:13,代码来源:ObjectInterface.cs

示例5: CrossTreadAddItemtoListbox

 /// <summary>
 /// 实现跨线程插入到Listbox中数据的函数
 /// </summary>
 /// <param name="lb"></param>
 /// <param name="strMsg"></param>
 public void CrossTreadAddItemtoListbox(ListBox lb, string strMsg)
 {
     if (lb.InvokeRequired)
     {
         DelegateforAddItemToListbox del = new DelegateforAddItemToListbox(CrossTreadAddItemtoListbox);
         lb.BeginInvoke(del, new object[] { lb, strMsg });
     }
     else
     {
         lb.Items.Add(strMsg);
     }
 }
开发者ID:rayviso,项目名称:Excel-,代码行数:17,代码来源:Form.cs

示例6: ShowInfoProc

        private void ShowInfoProc(string strMsg, ListBox lstBox, int nMax)
        {
            lstBox.BeginInvoke((Action)delegate ()
            {
                lstBox.BeginUpdate();
                lstBox.Items.Add(strMsg);
                if (nMax > 0)
                {
                    while (lstBox.Items.Count > nMax)
                        lstBox.Items.RemoveAt(0);
                }

                // Scroll to end
                //
                lstBox.SelectedIndex = lstBox.Items.Count - 1;
                lstBox.EndUpdate();
            });
        }        
开发者ID:s850042002,项目名称:ostock-simulation,代码行数:18,代码来源:Form1.cs

示例7: ListboxItemsInsert

 private void ListboxItemsInsert(ListBox lb, string strVal)
 {
     if (lb.InvokeRequired)
                 {
                         dListboxItemsInsert d = new dListboxItemsInsert(ListboxItemsInsert);
                         lb.BeginInvoke(d, new object[] { lb, strVal });
                 }
                 else
                 {
                         lb.Items.Add(strVal);
                 }
 }
开发者ID:rayviso,项目名称:Excel-,代码行数:12,代码来源:Form1.cs

示例8: ListBoxItemsDelete

 private void ListBoxItemsDelete(ListBox lb)
 {
     if (lb.InvokeRequired)
                 {
                         dListBoxItemsDelete d = new dListBoxItemsDelete(ListBoxItemsDelete);
                         lb.BeginInvoke(d, new object[] { lb });
                 }
                 else
                 {
                         lb.Items.Clear();
                 }
 }
开发者ID:rayviso,项目名称:Excel-,代码行数:12,代码来源:Form1.cs


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