UltraTimelineView の予定(Appointment)の外観を変更するには、Appointment.Appearance プロパティを利用することができます。
背景色を変更する例(C#):
//Appointment の作成 Appointment appointment = this.ultraCalendarInfo1.Appointments.Add( DateTime.Today, "Appointment" ); //Appointment.Appearance プロパティを利用し、予定の外観を制御する。 //背景色を変更する。 appointment.Appearance.BackColor = Color.LightPink;
背景色を変更する例(VB):
'Appointment の作成 Dim appointment As Appointment = Me.UltraCalendarInfo1.Appointments.Add(DateTime.Today, "Appointment") 'Appointment.Appearance プロパティを利用し、予定の外観を制御する。 '背景色を変更する。 appointment.Appearance.BackColor = Color.LightPink
実行結果
予定(Appointment)の背景色が変更されました。