バージョン

MonthPopupAppearance プロパティ

MonthPopup を表示する際に使用される Infragistics.Win.Appearance オブジェクトを設定します。
シンタックス
'宣言
 
Public Property MonthPopupAppearance As Infragistics.Win.AppearanceBase
public Infragistics.Win.AppearanceBase MonthPopupAppearance {get; set;}
使用例
Private Sub SetupMonthPopupAppearance()

'	Set the MonthPopup area to have a light blue gradient background,
'	with a dark blue foreground
     Me.ultraMonthViewMulti1.MonthPopupAppearance.BackColor = Color.White
     Me.ultraMonthViewMulti1.MonthPopupAppearance.BackColor2 = Color.LightBlue
     Me.ultraMonthViewMulti1.MonthPopupAppearance.BackGradientStyle = Infragistics.Win.GradientStyle.BackwardDiagonal
     Me.ultraMonthViewMulti1.MonthPopupAppearance.ForeColor = Color.DarkBlue

 End Sub
private void SetupMonthPopupAppearance()
{

	//	Set the MonthPopup area to have a light blue gradient background,
	//	with a dark blue foreground
	this.ultraMonthViewMulti1.MonthPopupAppearance.BackColor = Color.White;
	this.ultraMonthViewMulti1.MonthPopupAppearance.BackColor2 = Color.LightBlue;
	this.ultraMonthViewMulti1.MonthPopupAppearance.BackGradientStyle = Infragistics.Win.GradientStyle.BackwardDiagonal;
	this.ultraMonthViewMulti1.MonthPopupAppearance.ForeColor = Color.DarkBlue;

}
参照