Skip to main content
A newer version of this page is available. .

How to: Implement the Instant Feedback Mode (XPO)

In this example, the Data Grid is bound to an XPInstantFeedbackSource object that activates an Instant Feedback Mode. In this mode, you will no longer experience any UI freezing. The Data Grid performs data operations asynchronously in a background thread to make your application highly responsive.

View Example: WPF Data Grid - Implement the Instant Feedback Mode (XPO)

More Examples

The following example shows how to bind the WPF Data Grid to different data sources.

View Example: Bind the WPF Data Grid to Data

This example includes multiple solutions that demonstrate:

  • How to bind the Data Grid to Entity Framework, EF Core, and XPO.
  • Different binding mechanisms: virtual sources, server mode sources, and local data.
  • MVVM and code-behind patterns.

After you bind the Data Grid to a database, you can implement CRUD operations (create, read update, delete). Refer to the following topic for more information: CRUD Operations in a Data-Bound Grid.

View Example: Implement CRUD Operations in the WPF Data Grid