ListBox.BeginUpdate() : ListBox « System.Windows.Forms « C# / C Sharp by API






ListBox.BeginUpdate()

 

using System;
using System.Drawing;
using System.Windows.Forms;
using System.Data;
using System.Data.SqlClient;

public class ListBoxItemAdd : Form{
  ListBox lb;

  public ListBoxItemAdd()
  {
    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();
    for (int i = 0; i < 5; i++)
    {
       lb.Items.Add(i);
    }      

    lb.Items.Add("12345");
    lb.Items.Add("67890");
    lb.EndUpdate();
  } 

  static void Main() 
  {
    Application.Run(new ListBoxItemAdd());
  }
}  

   
  








Related examples in the same category

1.ListBox.ContextMenu
2.ListBox.DataBindings
3.ListBox.DataSource
4.ListBox.DataSourceChanged
5.ListBox.DisplayMember
6.ListBox.DisplayMemberChanged
7.ListBox.EndUpdate()
8.ListBox.FindString
9.ListBox.Items
10.ListBox.Items.Add
11.ListBox.Items.AddRange
12.ListBox.Items.Clear()
13.ListBox.Items.RemoveAt
14.ListBox.ScrollAlwaysVisible
15.ListBox.SelectedIndex
16.ListBox.SelectedIndexChanged
17.ListBox.SelectedValueChanged
18.ListBox.SelectionMode
19.ListBox.TopIndex
20.ListBox.ValueMemberChanged