本文整理汇总了C#中System.Windows.Forms.ListBox.EndUpdate方法的典型用法代码示例。如果您正苦于以下问题:C# ListBox.EndUpdate方法的具体用法?C# ListBox.EndUpdate怎么用?C# ListBox.EndUpdate使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.Windows.Forms.ListBox
的用法示例。
在下文中一共展示了ListBox.EndUpdate方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: AddToMyListBox
public void AddToMyListBox()
{
// Stop the ListBox from drawing while items are added.
listBox1.BeginUpdate();
// Loop through and add five thousand new items.
for(int x = 1; x < 5000; x++)
{
listBox1.Items.Add("Item " + x.ToString());
}
// End the update process and force a repaint of the ListBox.
listBox1.EndUpdate();
}
示例2: ListBox.EndUpdate()
//引入命名空间
using System;
using System.Drawing;
using System.Windows.Forms;
using System.Data;
using System.Data.SqlClient;
public class ListBoxItemAddRange : Form{
ListBox lb;
public ListBoxItemAddRange()
{
Size = new Size(300,400);
lb = new ListBox();
lb.Parent = this;
lb.Location = new Point(10,10);
lb.Size = new Size(ClientSize.Width - 20, Height - 200);
lb.Anchor = AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right | AnchorStyles.Bottom;
lb.BorderStyle = BorderStyle.Fixed3D;
lb.BeginUpdate();
string[] arNames = new string[5];
for(int i = 0;i<5;i++){
arNames[i] = "I";
}
lb.Items.AddRange(arNames);
lb.Items.Add("12345");
lb.Items.Add("67890");
lb.EndUpdate();
}
static void Main()
{
Application.Run(new ListBoxItemAddRange());
}
}