ListBox Items Add a Range : ListBox « GUI Windows Forms « C# / CSharp Tutorial






ListBox Items Add a Range
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());
  }
}








23.27.ListBox
23.27.1.Set the TopIndex property of the ListBox to ensure the most recently added items are visibleSet the TopIndex property of the ListBox to ensure the most recently added items are visible
23.27.2.Add Items to ListBoxAdd Items to ListBox
23.27.3.Add ContextMenu to ListBoxAdd ContextMenu to ListBox
23.27.4.ListBox Items AddListBox Items Add
23.27.5.ListBox Items Add a RangeListBox Items Add a Range
23.27.6.ListBox Selection ModeListBox Selection Mode
23.27.7.Use RadioButton to control ListBox selection modeUse RadioButton to control ListBox selection mode
23.27.8.ListBox Events: SelectedIndexChanged, SelectedValueChanged, DataSourceChanged, DisplayMemberChanged, ValueMemberChanged
23.27.9.Add text in the TextBox to the ListBox
23.27.10.Fills a ListBox with data from Database