Version

MonthPopupAppearance Property

Returns or sets the Infragistics.Win.Appearance object used when rendering the MonthPopup.
Syntax
'Declaration
 
Public Property MonthPopupAppearance As Infragistics.Win.AppearanceBase
public Infragistics.Win.AppearanceBase MonthPopupAppearance {get; set;}
Example
This example sets some of the color properties of the control's MonthPopupAppearance.

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;

}
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also