PowerTools InputMan for ASP.NET 8.0J
DropDownCalendar プロパティ
使用例 

DropDownCalendarオブジェクトを取得または設定します。
構文
Public Property DropDownCalendar As DropDownCalendar
public DropDownCalendar DropDownCalendar {get; set;}

プロパティ値

既定値:DropDownCalendarクラスの各既定値が適用されたDropDownCalendarオブジェクト
解説
DropDownCalendarプロパティは、カレンダーコントロールで使用されているものをラップしたオブジェクトを参照し、視覚的な日付入力を支援するドロップダウンカレンダーを提供します。

ドロップダウンボタンを押したときにカレンダーを表示するには、DropDownプロパティが参照するDateDropDownクラスのDateDropDown.DropDownTypeプロパティをDateDropDownType.Calendarに設定します。

ドロップダウンオブジェクトを開くには、ドロップダウンボタンをクリックするか、またはショートカットキーに割り当てたキーを押します。
使用例
次のサンプルコードは、ドロップダウンカレンダーの表示スタイルを変更します。
Imports GrapeCity.Web.Input.IMCalendar

' カレンダーのヘッダを設定します。
GcDateTime1.DropDownCalendar.HeaderFormat = "ggg ee年 MM月"
GcDateTime1.DropDownCalendar.HeaderStyle = New Style(Color.Thistle, Color.Blue)

' 日曜日を赤色にします。
GcDateTime1.DropDownCalendar.Weekdays.Sunday.SubStyle.ForeColor = Color.Red
GcDateTime1.DropDownCalendar.Weekdays.Sunday.WeekFlags = WeekFlags.All
GcDateTime1.DropDownCalendar.Weekdays.Sunday.ReflectToTitle = ReflectTitle.ForeColor

' 土曜日を青色にします。
GcDateTime1.DropDownCalendar.Weekdays.Saturday.SubStyle.ForeColor = Color.Blue
GcDateTime1.DropDownCalendar.Weekdays.Saturday.WeekFlags = WeekFlags.All
GcDateTime1.DropDownCalendar.Weekdays.Saturday.ReflectToTitle = ReflectTitle.ForeColor
using GrapeCity.Web.Input.IMCalendar;

// カレンダーのヘッダを設定します。
GcDateTime1.DropDownCalendar.HeaderFormat = "ggg ee年 MM月";
GcDateTime1.DropDownCalendar.HeaderStyle = new Style(Color.Thistle, Color.Blue);

// 日曜日を赤色にします。
GcDateTime1.DropDownCalendar.Weekdays.Sunday.SubStyle.ForeColor = Color.Red;
GcDateTime1.DropDownCalendar.Weekdays.Sunday.WeekFlags = WeekFlags.All;
GcDateTime1.DropDownCalendar.Weekdays.Sunday.ReflectToTitle = ReflectTitle.ForeColor;

// 土曜日を青色にします。
GcDateTime1.DropDownCalendar.Weekdays.Saturday.SubStyle.ForeColor = Color.Blue;
GcDateTime1.DropDownCalendar.Weekdays.Saturday.WeekFlags = WeekFlags.All;
GcDateTime1.DropDownCalendar.Weekdays.Saturday.ReflectToTitle = ReflectTitle.ForeColor;
参照

GcDateTime クラス
GcDateTime メンバ

 

 


© 2005-2015 GrapeCity inc. All rights reserved.