DataGridView::Sorted Event

 

Occurs when the DataGridView control completes a sorting operation.

Namespace:   System.Windows.Forms
Assembly:  System.Windows.Forms (in System.Windows.Forms.dll)

public:
event EventHandler^ Sorted {
	void add(EventHandler^ value);
	void remove(EventHandler^ value);
}

This event does not occur when the VirtualMode property is set to true and the control is sorted by an unbound column.

For more information about handling events, see NIB: Consuming Events.

The following code example illustrates how to ensure that the current cell is visible after sorting. This code works only with an unbound DataGridView control. With a DataGridView control bound to an external data source, the current cell is not automatically persisted when sorting.

To run this example, paste the following code into a form that contains a DataGridView named dataGridView1. In C#, you must also connect the Sorted event to the event handler.

No code example is currently available or this language may not be supported.

.NET Framework
Available since 2.0
Return to top
Show: