SPREAD for WPF 3.0J - GcSpreadGrid
DropDownButtonStyle プロパティ (ComboBoxCellType)
使用例 

GrapeCity.Windows.SpreadGrid 名前空間 > ComboBoxCellType クラス : DropDownButtonStyle プロパティ
ドロップダウンボタンの描画に使用されるスタイルを取得または設定します。
シンタックス
'宣言
 
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 メンバ