Version

DropDownAppearance Property (UltraCalendarCombo)

Returns or sets the Infragistics.Win.Appearance object used when dropdown and calendar portion of the control.
Syntax
'Declaration
 
Public Property DropDownAppearance As Infragistics.Win.AppearanceBase
public Infragistics.Win.AppearanceBase DropDownAppearance {get; set;}
Example
This example sets some of the colors that are applied to the dropdown calendar.

Imports Infragistics.Win
Imports Infragistics.Win.UltraWinSchedule
Imports Infragistics.Win.UltraWinSchedule.CalendarCombo

    Private Sub SetupDropDownAppearance()

        '	Use gradients for the background
        Me.ultraCalendarCombo1.DropDownAppearance.BackColor = Color.White
        Me.ultraCalendarCombo1.DropDownAppearance.BackColor2 = Color.LightBlue
        Me.ultraCalendarCombo1.DropDownAppearance.BackGradientStyle = GradientStyle.ForwardDiagonal

        '	Use a darker color for the foreground
        Me.ultraCalendarCombo1.DropDownAppearance.ForeColor = Color.DarkBlue

    End Sub
using Infragistics.Win;
using Infragistics.Win.UltraWinSchedule;
using Infragistics.Win.UltraWinSchedule.CalendarCombo;

		private void SetupDropDownAppearance()
		{

			//	Use gradients for the background
			this.ultraCalendarCombo1.DropDownAppearance.BackColor = Color.White;
			this.ultraCalendarCombo1.DropDownAppearance.BackColor2 = Color.LightBlue;
			this.ultraCalendarCombo1.DropDownAppearance.BackGradientStyle = GradientStyle.ForwardDiagonal;

			//	Use a darker color for the foreground
			this.ultraCalendarCombo1.DropDownAppearance.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