GrapeCity SPREAD for WPF 2.0J
ContentTemplate プロパティ (CheckBoxCellType)

CheckBoxCellType の内容の表示に使用されるデータテンプレートを取得または設定します。
構文
'Declaration
 
Public Property ContentTemplate As DataTemplate
public DataTemplate ContentTemplate {get; set;}

プロパティ値

データテンプレート。既定値は null 参照 (Visual Basicでは Nothing) です。
次のサンプルは、データテンプレートを使用して CheckBoxCellType に下線を設定する方法を説明します。
<DataTemplate x:Key ="UnderLineTemplate">
    <TextBlock Text="{Binding}" TextDecorations="UnderLine"></TextBlock>
</DataTemplate>
CheckBoxCellType checkbox = new CheckBoxCellType();
checkbox.Content = "Custom TextFormat";
checkbox.ContentTemplate = this.Resources["UnderLineTemplate"] as DataTemplate;
gcSpreadGrid1[0, 0].CellType = checkbox;
Dim checkbox As New CheckBoxCellType()
checkbox.Content = "Custom TextFormat"
checkbox.ContentTemplate = TryCast(Me.Resources("UnderLineTemplate"), DataTemplate)
gcSpreadGrid1(0, 0).CellType = checkbox
参照

CheckBoxCellType クラス
CheckBoxCellType メンバ

 

 


Copyright © 2012 GrapeCity inc. All rights reserved.