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

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