Imports GrapeCity.Web.Input.Core
' ヘッダを表示します。
GcDateTime1.DropDownCalendar.ShowHeader = True
' ヘッダの高さを23ピクセルに設定します。
GcDateTime1.DropDownCalendar.HeaderHeight = 23
' 年月を和暦で表示します。
GcDateTime1.DropDownCalendar.HeaderFormat = "ggg e年 M月"
' ヘッダのスタイルを設定します。
GcDateTime1.DropDownCalendar.HeaderStyle.BackColor = Color.Thistle
GcDateTime1.DropDownCalendar.HeaderStyle.ForeColor = Color.Blue
GcDateTime1.DropDownCalendar.HeaderStyle.Font.Name = "MS ゴシック"
GcDateTime1.DropDownCalendar.HeaderStyle.BorderColor = Color.Purple
GcDateTime1.DropDownCalendar.HeaderStyle.BorderStyle = BorderStyle.Solid
GcDateTime1.DropDownCalendar.HeaderStyle.BorderWidth = 1
GcDateTime1.DropDownCalendar.HeaderStyle.TextHAlign = AlignHorizontal.Center
GcDateTime1.DropDownCalendar.HeaderStyle.TextVAlign = AlignVertical.Middle
using GrapeCity.Web.Input.Core;
// ヘッダを表示します。
GcDateTime1.DropDownCalendar.ShowHeader = true;
// ヘッダの高さを23ピクセルに設定します。
GcDateTime1.DropDownCalendar.HeaderHeight = 23;
// 年月を和暦で表示します。
GcDateTime1.DropDownCalendar.HeaderFormat = "ggg e年 M月";
// ヘッダのスタイルを設定します。
GcDateTime1.DropDownCalendar.HeaderStyle.BackColor = Color.Thistle;
GcDateTime1.DropDownCalendar.HeaderStyle.ForeColor = Color.Blue;
GcDateTime1.DropDownCalendar.HeaderStyle.Font.Name = "MS ゴシック";
GcDateTime1.DropDownCalendar.HeaderStyle.BorderColor = Color.Purple;
GcDateTime1.DropDownCalendar.HeaderStyle.BorderStyle = BorderStyle.Solid;
GcDateTime1.DropDownCalendar.HeaderStyle.BorderWidth = 1;
GcDateTime1.DropDownCalendar.HeaderStyle.TextHAlign = AlignHorizontal.Center;
GcDateTime1.DropDownCalendar.HeaderStyle.TextVAlign = AlignVertical.Middle;