DataGrid.Navigate イベント
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
ユーザーが新しいテーブルに移動すると発生します。
public:
event System::Windows::Forms::NavigateEventHandler ^ Navigate;
public event System.Windows.Forms.NavigateEventHandler Navigate;
member this.Navigate : System.Windows.Forms.NavigateEventHandler
Public Custom Event Navigate As NavigateEventHandler
イベントの種類
例
次のコード例では、このメンバーの使用方法を示します。
// Instantiate the 'Navigate' NavigateEventHandler.
private:
void CallNavigate()
{
myDataGrid->Navigate += gcnew NavigateEventHandler( this, &MyDataGrid::Grid_Navigate );
}
// Raise the event when navigating to another table.
private:
void Grid_Navigate( Object^ /*sender*/, NavigateEventArgs^ /*e*/ )
{
// String variable used to show message.
String^ myString = "Navigate event raised, moved to another table";
// Show the message when navigating to another table.
MessageBox::Show( myString, "Table navigation information" );
}
// Instantiate the 'Navigate' NavigateEventHandler.
private void CallNavigate()
{
myDataGrid.Navigate += new NavigateEventHandler(Grid_Navigate);
}
// Raise the event when navigating to another table.
private void Grid_Navigate(object sender, NavigateEventArgs e)
{
// String variable used to show message.
string myString = "Navigate event raised, moved to another table";
// Show the message when navigating to another table.
MessageBox.Show(myString, "Table navigation information");
}
' Create an instance of the 'Navigate' NavigateEventHandler.
Private Sub CallNavigate()
AddHandler myDataGrid.Navigate, AddressOf Grid_Navigate
End Sub
' Raise the event when navigating to another table.
Private Sub Grid_Navigate(ByVal sender As Object, ByVal e As NavigateEventArgs)
' String variable used to show message.
Dim myString As String = "Navigate event raised, moved to another table"
' Show the message when navigating to another table.
MessageBox.Show(myString, "Table navigation information")
End Sub
注釈
イベントを Navigate 使用して、テーブルに応じて幅などの個々の列プロパティをリセットします。
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET