ListBox.BeginUpdate 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
ListBox 메서드가 호출될 때까지 해당 컨트롤이 그려지지 않도록 하여 항목이 한 번에 하나씩 EndUpdate()에 추가되는 동안 성능을 유지합니다.
public:
void BeginUpdate();
public void BeginUpdate ();
member this.BeginUpdate : unit -> unit
Public Sub BeginUpdate ()
예제
다음 코드 예제에서는 5,000개의 항목을 추가하는 동안 및 EndUpdate 메서드를 ListBox사용합니다BeginUpdate. 이 예제에서는 명명listBox1
된 ListBox 컨트롤이 a Form 에 추가되고 이 메서드가 폼 내에 배치되고 해당 컨트롤에서 호출되어야 합니다.
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( String::Format( "Item {0}", x ) );
}
listBox1->EndUpdate();
}
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();
}
Public Sub AddToMyListBox()
' Stop the ListBox from drawing while items are added.
listBox1.BeginUpdate()
' Loop through and add five thousand new items.
Dim x As Integer
For x = 1 To 4999
listBox1.Items.Add("Item " & x.ToString())
Next x
' End the update process and force a repaint of the ListBox.
listBox1.EndUpdate()
End Sub
설명
여러 항목을 ListBox 추가하는 기본 방법은 클래스의 ListBox.ObjectCollection 메서드를 사용하는 AddRange 것입니다(속성 사용 Items ListBox). 이렇게 하면 단일 작업에서 목록에 항목 배열을 추가할 수 있습니다. 그러나 클래스의 ListBox.ObjectCollection 메서드를 사용하여 Add 항목을 한 번에 하나씩 추가하려는 경우 이 메서드를 사용하여 BeginUpdate 항목이 목록에 추가 될 때마다 컨트롤이 다시 표시되지 ListBox 않도록 할 수 있습니다. 목록에 항목을 추가하는 작업을 완료했으면 메서드를 호출 EndUpdate 하여 다시 칠할 수 있도록 합니다 ListBox . 이러한 방식으로 항목을 추가하면 목록에 많은 수의 항목이 ListBox 추가될 때 깜박이는 그리기를 방지할 수 있습니다.