// Please use the following namespace
// using System.Windows.Forms;
// using GrapeCity.Win.Editors;
public void SetDropDownSettings()
{
// Creates an instance of a GcDateTime control.
GcDateTime GcDateTime1 = new GcDateTime();
// Sets the AllowResize to true, you can change the size of drop-dwon window by drag the mouse.
GcDateTime1.DropDown.AllowResize = true;
// Sets the ClosingAnimation to Fade, the drop-down window will displayed as a fade effect when it's closing.
GcDateTime1.DropDown.ClosingAnimation = DropDownAnimation.Fade;
// Sets the OpeningAnimation to Fade, the drop-down window will displayed as a fade effect when it's opening.
GcDateTime1.DropDown.OpeningAnimation = DropDownAnimation.Fade;
// Sets the Dirction to AboveLeft, the drop-down window will displayed above the control and align to left.
GcDateTime1.DropDown.Direction = DropDownDirection.AboveLeft;
// Sets the ShowShadow to true, the drop-down window will displayed with a shadow.
GcDateTime1.DropDown.ShowShadow = true;
}
' Please use the following namespace
' Imports System.Windows.Forms;
' Imports GrapeCity.Win.Editors;
Public Sub SetDropDownSettings()
' Creates an instance of a GcDateTime control.
Dim GcDateTime1 As New GcDateTime()
' Sets the AllowResize to true, you can change the size of drop-dwon window by drag the mouse.
GcDateTime1.DropDown.AllowResize = True
' Sets the ClosingAnimation to Fade, the drop-down window will displayed as a fade effect when it's closing.
GcDateTime1.DropDown.ClosingAnimation = DropDownAnimation.Fade
' Sets the OpeningAnimation to Fade, the drop-down window will displayed as a fade effect when it's opening.
GcDateTime1.DropDown.OpeningAnimation = DropDownAnimation.Fade
' Sets the Dirction to AboveLeft, the drop-down window will displayed above the control and align to left.
GcDateTime1.DropDown.Direction = DropDownDirection.AboveLeft
' Sets the ShowShadow to true, the drop-down window will displayed with a shadow.
GcDateTime1.DropDown.ShowShadow = True
End Sub