Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

ListBoxEdit.BeginDataUpdate() Method

In This Article

Prevents visual and internal data updates until the ListBoxEdit.EndDataUpdate method is called.

Namespace: DevExpress.Xpf.Editors

Assembly: DevExpress.Xpf.Core.v24.2.dll

NuGet Package: DevExpress.Wpf.Core

#Declaration

public void BeginDataUpdate()

#Remarks

To prevent internal data updates, use the BeginDataUpdate and ListBoxEdit.EndDataUpdate methods.

If the code that performs a sequence of data operations is wrapped with the BeginDataUpdate and ListBoxEdit.EndDataUpdate methods, the list box performs only a single data update reflecting all changes made, after the ListBoxEdit.EndDataUpdate method is called.

See Also