GrapeCity SPREAD for WPF 2.0J
DropDownButtonStyle プロパティ (DateTimeCellType)

ドロップダウンボタンの描画に使用されるスタイルを取得または設定します。
構文
'Declaration
 
Public Property DropDownButtonStyle As Style
public Style DropDownButtonStyle {get; set;}

プロパティ値

ドロップダウンボタンのプロパティの設定に使用される System.Windows.Style 値。
次のサンプルは DateTimeCellType のドロップダウン ボタンのカスタマイズ方法を説明します。このサンプルでは、日付型セルのドロップダウン ボタンの幅を 40 に変更します。
<sg:GcSpreadGrid DefaultRowHeight="40">
    <sg:GcSpreadGrid.Columns>
        <sg:Column Width="100">
            <sg:Column.CellType>
                <sg:DateTimeCellType>
                    <sg:DateTimeCellType.DropDownButtonStyle>
                        <Style TargetType="sg:CellDropDownButton">
                            <Setter Property="Width" Value="40" />
                        </Style>
                    </sg:DateTimeCellType.DropDownButtonStyle>
                </sg:DateTimeCellType>
            </sg:Column.CellType>
        </sg:Column>
    </sg:GcSpreadGrid.Columns>
</sg:GcSpreadGrid>
参照

DateTimeCellType クラス
DateTimeCellType メンバ

 

 


Copyright © 2012 GrapeCity inc. All rights reserved.