Skip to content

SyncfusionExamples/how-to-add-busy-indicator-for-winforms-datagrid

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 

Repository files navigation

How to Add Busy Indicator for WinForms DataGrid?

This sample illustrates how to add busy indicator for WinForms DataGrid (SfDataGrid).

DataGrid have the built-in support to enable the busy indicator when the data in the grid is updating with some actions (filtering, initialing data, etc.) by using the ShowBusyIndicator property. In order to add a busy indicator for your custom actions, the BusyIndicator control can be used. The Show/Hide methods can be used based on our requirement.

//To add built-in busy indicator
sfDataGrid.ShowBusyIndicator = true;
 
//OR
 
//To add busy indicator control for SfDataGrid based on requirement.
buysIndicator.Show(sfDataGrid.TableControl);
var data = new OrderInfoCollection();
sfDataGrid.DataSource = data.OrdersListDetails;
//To hide the busy indicator after the process is completed.
buysIndicator.Hide();

DataGrid showing busy indicator

About

How to add busy indicator for WinForms DataGrid (SfDataGrid)?

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 5

Languages