System.Windows.Forms.ListBox.RefreshItems C# (CSharp) Méthode

RefreshItems() protected méthode

protected RefreshItems ( ) : void
Résultat void
		protected override void RefreshItems ()
		{
			for (int i = 0; i < Items.Count; i++) {
				RefreshItem (i);
			}

			LayoutListBox ();
			Refresh ();
		}

Usage Example

Exemple #1
0
 public void Remove(object value)
 {
     items.Remove(value);
     owner.RefreshItems();
 }