NavigateEventArgs.Forward プロパティ

定義

前方向に移動するかどうかを示す値を取得します。

public:
 property bool Forward { bool get(); };
public bool Forward { get; }
member this.Forward : bool
Public ReadOnly Property Forward As Boolean

プロパティ値

前方向に移動する場合は true。それ以外の場合は false

次のコード例では、このメンバーの使用方法を示します。 この例では、イベント ハンドラーがイベントの DataGrid.Navigate 発生を報告します。 このレポートは、イベントが発生したタイミングを知るのに役立ち、デバッグに役立ちます。 複数のイベントまたは頻繁に発生するイベントを報告するには、 を Console.WriteLine に置き換えるかMessageBox.Show、複数行TextBoxにメッセージを追加することを検討してください。

コード例を実行するには、 という名前DataGrid1の型DataGridのインスタンスを含むプロジェクトに貼り付けます。 次に、イベント ハンドラーが イベントに関連付けられていることを確認します DataGrid.Navigate

private void DataGrid1_Navigate(Object sender, NavigateEventArgs e) {

System.Text.StringBuilder messageBoxCS = new System.Text.StringBuilder();
messageBoxCS.AppendFormat("{0} = {1}", "Forward", e.Forward );
messageBoxCS.AppendLine();
MessageBox.Show(messageBoxCS.ToString(), "Navigate Event" );
}
Private Sub DataGrid1_Navigate(sender as Object, e as NavigateEventArgs) _ 
     Handles DataGrid1.Navigate

    Dim messageBoxVB as New System.Text.StringBuilder()
    messageBoxVB.AppendFormat("{0} = {1}", "Forward", e.Forward)
    messageBoxVB.AppendLine()
    MessageBox.Show(messageBoxVB.ToString(),"Navigate Event")

End Sub

適用対象