SelectedIndexChanging イベントに、ユーザーが切り替えることができないようにするページのインデックスかどうかをテストするためのハンドラを追加できます。その場合は、e.Cancel を True に設定します。たとえば、次のコードは、SelectedIndexChanging イベントにハンドラを追加する方法を示しています。
Visual Basic コードの書き方
Visual Basic |
コードのコピー
|
---|---|
Private Sub c1DockingTab1_SelectedIndexChanging(sender As Object, e As C1.Win.C1Command.SelectedIndexChangingEventArgs) If e.NewIndex = 1 And e.CanCancel Then e.Cancel = True End If End Sub |
C# コードの書き方
C# |
コードのコピー
|
---|---|
private void c1DockingTab1_SelectedIndexChanging(object sender, C1.Win.C1Command.SelectedIndexChangingEventArgs e) { if(e.NewIndex == 1 && e.CanCancel) e.Cancel = true } |