バージョン

CalendarLookChangedEventHandler デリゲート

CalendarLookのデータが変更されたときに発生するイベントを処理するためのデリゲート。
シンタックス
'宣言
 
Public Delegate Sub CalendarLookChangedEventHandler( _
   ByVal sender As Object, _
   ByVal e As CalendarLookChangedEventArgs _
) 
public delegate void CalendarLookChangedEventHandler( 
   object sender,
   CalendarLookChangedEventArgs e
)

パラメータ

sender
e
使用例
Imports System.Diagnostics
Imports Infragistics.Win
Imports Infragistics.Win.UltraWinSchedule

	Private Sub UltraCalendarLook1_CalendarLookChanged(ByVal sender As Object, ByVal e As Infragistics.Win.UltraWinSchedule.CalendarLookChangedEventArgs) Handles UltraCalendarLook1.CalendarLookChanged

		Debug.WriteLine("UltraCalendarLook has changed.  (Property: " + [Enum].GetName(GetType(PropertyIds), e.PropChangeInfo.PropId) + ", Object: " + e.PropChangeInfo.Source.GetType().Name + ")")

	End Sub
using System.Diagnostics;
using Infragistics.Win;
using Infragistics.Win.UltraWinSchedule;

		private void ultraCalendarLook1_CalendarLookChanged(object sender, Infragistics.Win.UltraWinSchedule.CalendarLookChangedEventArgs e)
		{

			Debug.WriteLine("UltraCalendarLook has changed.  (Property: " + Enum.GetName(typeof(PropertyIds), e.PropChangeInfo.PropId) + ", Object: " + e.PropChangeInfo.Source.GetType().Name + ")");

		}
参照