バージョン

CalendarLookChangedEventArgs クラス

CalendarLookChangedイベントに使用されるイベントパラメーターです。
シンタックス
'宣言
 
Public Class CalendarLookChangedEventArgs 
   Inherits System.EventArgs
public class CalendarLookChangedEventArgs : System.EventArgs 
使用例
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 + ")");

		}
参照