System.Windows.Forms.ComboBox.EndUpdate Method

Resumes painting the System.Windows.Forms.ComboBox control after painting is suspended by the ComboBox.BeginUpdate method.

Syntax

public void EndUpdate ()

Remarks

The preferred way to add items to the System.Windows.Forms.ComboBox is to use the System.Windows.Forms.ComboBox.ObjectCollection.AddRange(Object[]) method of the System.Windows.Forms.ComboBox.ObjectCollection class (through the ComboBox.Items property of the System.Windows.Forms.ComboBox). This enables you to add an array of items to the list at one time. However, if you want to add items one at a time using the System.Windows.Forms.ComboBox.ObjectCollection.Add(object) method of the System.Windows.Forms.ComboBox.ObjectCollection class, you can use the ComboBox.BeginUpdate method to prevent the control from repainting the System.Windows.Forms.ComboBox each time an item is added to the list. Once you have completed the task of adding items to the list, call the ComboBox.EndUpdate method to enable the System.Windows.Forms.ComboBox to repaint. This way of adding items can prevent flickered drawing of the System.Windows.Forms.ComboBox when a large number of items are being added to the list.

Requirements

Namespace: System.Windows.Forms
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
Assembly Versions: 1.0.5000.0, 2.0.0.0