'宣言 Public Event AfterDisplayMonthPopup As AfterDisplayMonthPopupEventHandler
public event AfterDisplayMonthPopupEventHandler AfterDisplayMonthPopup
イベント ハンドラが、このイベントに関連するデータを含む、AfterDisplayMonthPopupEventArgs 型の引数を受け取りました。次の AfterDisplayMonthPopupEventArgs プロパティには、このイベントの固有の情報が記載されます。
プロパティ | 解説 |
---|---|
Month | ポップアップが表示された月を返します。 |
MonthScrollingTo | コントロールのスクロール先の月を返します。ユーザーが月を選択しなかった場合はnull。 |
AfterDisplayMonthPopupEventArgs.Month プロパティは、Infragistics.Win.UltraWinSchedule.MonthViewMulti.MonthHeaderAreaUIElement がクリックされた Month オブジェクトを返します。AfterDisplayMonthPopupEventArgs.MonthScrollingTo は、スクロールするように選択された場合には Month オブジェクトを返します。またはマウスが Infragistics.Win.UltraWinSchedule.MonthViewMulti.UltraMonthPopupControl の外側で放された場合 null (VB では Nothing) を返します。
Private Sub ultraMonthViewMulti1_AfterDisplayMonthPopup(ByVal sender As Object, ByVal e As Infragistics.Win.UltraWinSchedule.AfterDisplayMonthPopupEventArgs) Handles ultraMonthViewMulti1.AfterDisplayMonthPopup ' Get the name of the month for which the popup was displayed Dim oldMonthName As String = System.Globalization.CultureInfo.CurrentCulture.DateTimeFormat.MonthNames(e.Month.MonthNumber - 1) ' Get the name of the month that was scrolled to Dim newMonthName As String = String.Empty If (Not e.MonthScrollingTo Is Nothing) Then ' Ge the name of the month we are scrolling to newMonthName = System.Globalization.CultureInfo.CurrentCulture.DateTimeFormat.MonthNames(e.MonthScrollingTo.MonthNumber - 1) ' Output information about the event to the debugger Dim info As String = String.Empty info = "The popup was displayed for the month of " + oldMonthName + vbCrLf info += "The popup was scrolled to the month of " + newMonthName + vbCrLf System.Diagnostics.Debug.WriteLine(info) End If End Sub
private void ultraMonthViewMulti1_AfterDisplayMonthPopup(object sender, Infragistics.Win.UltraWinSchedule.AfterDisplayMonthPopupEventArgs e) { // Get the name of the month for which the popup was displayed string oldMonthName = System.Globalization.CultureInfo.CurrentCulture.DateTimeFormat.MonthNames[ e.Month.MonthNumber -1 ]; // Get the name of the month that was scrolled to string newMonthName = string.Empty; if ( e.MonthScrollingTo != null ) { // Ge the name of the month we are scrolling to newMonthName = System.Globalization.CultureInfo.CurrentCulture.DateTimeFormat.MonthNames[ e.MonthScrollingTo.MonthNumber -1 ]; // Output information about the event to the debugger string info = string.Empty; info = "The popup was displayed for the month of " + oldMonthName + "\n"; info += "The popup was scrolled to the month of " + newMonthName + "\n"; System.Diagnostics.Debug.WriteLine( info ); } }