DataGridTableStyle.PreferredRowHeightChanged Event
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Occurs when the PreferredRowHeight value changes.
public:
event EventHandler ^ PreferredRowHeightChanged;
public event EventHandler PreferredRowHeightChanged;
member this.PreferredRowHeightChanged : EventHandler
Public Custom Event PreferredRowHeightChanged As EventHandler
Event Type
Examples
The following code example demonstrates the use of this member.
void SetUp()
{
// Create a DataSet with a table.
MakeDataSet();
// Bind the DataGrid to the DataSet.
myDataGrid->SetDataBinding( myDataSet, "Orders" );
myTableStyle = gcnew DataGridTableStyle;
// Map 'DataGridTableStyle' instance to the DataTable.
myTableStyle->MappingName = "Orders";
// Add EventHandler function for 'PreferredRowHeightChanged' Event.
myTableStyle->PreferredRowHeightChanged += gcnew EventHandler( this, &MyDataForm::RowHeight_Changed );
}
// Called when the PreferredRowHeight property of myTableStyle is modified
void RowHeight_Changed( Object^ /*sender*/, EventArgs^ /*e*/ )
{
MessageBox::Show( "PreferredRowHeight property is changed" );
}
private void SetUp()
{
// Create a DataSet with a table.
MakeDataSet();
// Bind the DataGrid to the DataSet.
myDataGrid.SetDataBinding(myDataSet, "Orders");
myTableStyle = new DataGridTableStyle();
// Map 'DataGridTableStyle' instance to the DataTable.
myTableStyle.MappingName = "Orders";
// Add EventHandler function for 'PreferredRowHeightChanged' Event.
myTableStyle.PreferredRowHeightChanged+=new EventHandler(RowHeight_Changed);
}
// Called when the PreferredRowHeight property of myTableStyle is modified
private void RowHeight_Changed(object sender, EventArgs e)
{
MessageBox.Show("PreferredRowHeight property is changed");
}
Private Sub SetUp()
' Create a DataSet with a table.
MakeDataSet()
' Bind the DataGrid to the DataSet.
myDataGrid.SetDataBinding(myDataSet, "Orders")
myTableStyle = New DataGridTableStyle()
' Map 'DataGridTableStyle' instance to the DataTable.
myTableStyle.MappingName = "Orders"
' Add EventHandler function for 'PreferredRowHeightChanged' Event.
AddHandler myTableStyle.PreferredRowHeightChanged, AddressOf RowHeight_Changed
End Sub
' Called when the PreferredRowHeight property of myTableStyle is modified
Private Sub RowHeight_Changed(ByVal sender As Object, ByVal e As EventArgs)
MessageBox.Show("PreferredRowHeight property is changed")
End Sub
Remarks
For more information about handling events, see Handling and Raising Events.
Applies to
See also
Dolgozzon együtt velünk a GitHubon
A tartalom forrása a GitHubon található, ahol létrehozhat és áttekinthet problémákat és lekéréses kérelmeket is. További információért tekintse meg a közreműködői útmutatónkat.