DataGridViewAutoSizeModeEventArgs Class
Assembly: System.Windows.Forms (in system.windows.forms.dll)
The AutoSizeRowsModeChanged event is raised when the value of the AutoSizeRowsMode property of the DataGridView control changes. The RowHeadersWidthSizeModeChanged event is raised when the value of the RowHeadersWidthSizeMode property changes.
For more information about handling events, see Consuming Events.
The following code example demonstrates how to process the AutoSizeRowsModeChanged event. This code example is part of a larger example provided at How to: Automatically Resize Cells When Content Changes in the Windows Forms DataGridView Control.
private void WatchRowsModeChanges(object sender, DataGridViewAutoSizeModeEventArgs modeEvent) { Label label = (Label)flowLayoutPanel1.Controls[currentLayoutName]; if (modeEvent.PreviousModeAutoSized) { label.Text = "changed to a different " + label.Name + dataGridView1.AutoSizeRowsMode.ToString(); } else { label.Text = label.Name + dataGridView1.AutoSizeRowsMode.ToString(); } }
Windows 98, Windows Server 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.Reference
DataGridViewAutoSizeModeEventArgs MembersSystem.Windows.Forms Namespace
DataGridView
DataGridView.AutoSizeRowsModeChanged Event
DataGridView.AutoSizeRowsMode Property
DataGridViewAutoSizeRowsMode
DataGridView.RowHeadersWidthSizeModeChanged Event
DataGridView.RowHeadersWidthSizeMode Property
DataGridViewRowHeadersWidthSizeMode
DataGridViewAutoSizeModeEventHandler