DataGrid.Scroll Event

Definition

Occurs when the user scrolls the DataGrid control.

C#
public event EventHandler Scroll;

Event Type

Examples

The following code example demonstrates the use of this member.

C#
// Create an instance of the 'Scroll' EventHandler.
private void CallScroll()
{
   myDataGrid.Scroll += new EventHandler(Grid_Scroll);
}

// Raise the event when DataGrid is scrolled.
private void Grid_Scroll(object sender, EventArgs e)
{
   // String variable used to show message.
   string myString = "Scroll event raised, DataGrid is scrolled";
   // Show the message when scrolling is done.
   MessageBox.Show(myString, "Scroll information");
}

Applies to

Proizvod Verzije
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 10