SPREAD for WPF 4.0J - GcSpreadGrid
DropDownCalendarStyle プロパティ (DateTimeCellType)
使用例 

GrapeCity.Windows.SpreadGrid 名前空間 > DateTimeCellType クラス : DropDownCalendarStyle プロパティ
ドロップダウンカレンダーの描画に使用される System.Windows.Style を取得または設定します。これは依存関係プロパティです。
シンタックス
'宣言
 
Public Property DropDownCalendarStyle As Style
public Style DropDownCalendarStyle {get; set;}

プロパティ値

ドロップダウンカレンダーに適用される System.Windows.Style
使用例
次のサンプルは DateTimeCellType のDropDownCalendarStype をカスタマイズする方法を説明します。
<sg:CalendarDayButtonStyleSelector x:Key="StyleSelector">
    <sg:CalendarDayButtonStyleSelector.Conditions>
        <sg:DayOfWeekCondition DayOfWeek="Wednesday">
            <sg:DayOfWeekCondition.Setters>
                <sg:SelectorSetter Property="FontSize" Value="20"/>
            </sg:DayOfWeekCondition.Setters>
        </sg:DayOfWeekCondition>
        <sg:PropertyCondition Property="IsHoliday" Value="true">
            <sg:PropertyCondition.Setters>
                <sg:SelectorSetter Property="Foreground" Value="Red"/>
            </sg:PropertyCondition.Setters>
        </sg:PropertyCondition>
    </sg:CalendarDayButtonStyleSelector.Conditions>
</sg:CalendarDayButtonStyleSelector>
<Style TargetType="sg:DropDownCalendarEditElement">
    <Setter Property="HolidaySetting">
        <Setter.Value>
            <sg:HolidaySetting IsActive="True">
                <sg:DayOfWeekHoliday DayOfWeek="Wednesday" Month="All" WeekInMonth="All" />
            </sg:HolidaySetting>
        </Setter.Value>
    </Setter>
    <Setter Property="CalendarDayButtonStyleSelector">
        <Setter.Value>
            <StaticResource ResourceKey="StyleSelector"/>
        </Setter.Value>
    </Setter>
</Style>
参照

DateTimeCellType クラス
DateTimeCellType メンバ