イベントが発生すると、デリゲートを通じてイベント ハンドラーが呼び出されます。
OnAfterNoteRemoved メソッドを使用すれば、デリゲートを関連付けなくても、派生クラスでイベントを処理できます。これは、派生クラスでイベントを処理する際によく用いられる手法です。
継承時の注意: 派生クラスで OnAfterNoteRemoved をオーバーライドする場合は、登録されたデリゲートがイベントを受信できるようにするため、必ず基本クラスの OnAfterNoteRemoved メソッドを呼び出してください。
Imports Infragistics.Shared Imports Infragistics.Win Imports Infragistics.Win.UltraWinSchedule Imports System.Diagnostics Private Sub ultraCalendarInfo1_AfterNoteRemoved(ByVal sender As Object, ByVal e As System.EventArgs) Handles ultraCalendarInfo1.AfterNoteRemoved '---------------------------------------------------------------------------------------------------- ' 説明 ' AfterNoteRemoved ' ' 既存のメンバーがコンポーネントの Notes コレクションから削除された後に発生します ' '---------------------------------------------------------------------------------------------------- Dim result As DialogResult = MessageBox.Show("A Note was just removed from the UltraCalendarInfo object." + "\n" + "Would you like to add a new Note for the ActiveDay?", "AfterNoteRemoved", MessageBoxButtons.YesNo) If (result = DialogResult.No) Then Return Dim startDate As DateTime = Me.ultraCalendarInfo1.ActiveDay.Date Me.ultraCalendarInfo1.Notes.Add(startDate, "My Note") End Sub
using System.Diagnostics; using Infragistics.Shared; using Infragistics.Win; using Infragistics.Win.UltraWinSchedule; private void ultraCalendarInfo1_AfterNoteRemoved(object sender, System.EventArgs e) { //---------------------------------------------------------------------------------------------------- // 説明 // AfterNoteRemoved // // 既存のメンバーがコンポーネントの Notes コレクションから削除された後に発生します // //---------------------------------------------------------------------------------------------------- DialogResult result = MessageBox.Show( "A Note was just removed from the UltraCalendarInfo object." + "\n" + "Would you like to add a new Note for the ActiveDay?", "AfterNoteRemoved", MessageBoxButtons.YesNo ); if ( result == DialogResult.No ) return; DateTime startDate = this.ultraCalendarInfo1.ActiveDay.Date; this.ultraCalendarInfo1.Notes.Add( startDate, "My Note" ); }