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

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

プロパティ値

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

ComboBoxCellType クラス
ComboBoxCellType メンバ

 

 


Copyright © 2012 GrapeCity inc. All rights reserved.