GridViewColumn.CellTemplate プロパティ

定義

列のセルの内容を表示するために使用するテンプレートを取得または設定します。

public:
 property System::Windows::DataTemplate ^ CellTemplate { System::Windows::DataTemplate ^ get(); void set(System::Windows::DataTemplate ^ value); };
public System.Windows.DataTemplate CellTemplate { get; set; }
member this.CellTemplate : System.Windows.DataTemplate with get, set
Public Property CellTemplate As DataTemplate

プロパティ値

列のセルの書式設定に使用される DataTemplate。 既定値は、null です。

次の例は、 を表示するために使用する を指定 DataTemplate する方法を GridViewColumn示しています。

<DataTemplate x:Key="myCellTemplateMonth">
  <DockPanel>
    <TextBlock Foreground="DarkBlue" HorizontalAlignment="Center">
      <TextBlock.Text>
        <Binding Path="Month"/>
      </TextBlock.Text>
    </TextBlock>
  </DockPanel>
</DataTemplate>
<GridViewColumn Header="Month" Width="80"
      CellTemplate="{StaticResource myCellTemplateMonth}"/>

注釈

次のプロパティはすべて、列セルの内容にバインドして表示し、優先順位の高い順にここに一覧表示されます。

XAML 属性の使用方法

<object CellTemplate="{ResourceExtension TemplateResourceKey}"/>  

XAML プロパティ要素の使用

XAML 値

ResourceExtension
次のいずれか: StaticResource、または DynamicResource「XAML リソース」を参照してください。

TemplateResourceKey
要求されるテンプレートを識別するキー。 キーは、 内の既存のリソースを ResourceDictionary参照します。

注意

プロパティ要素の構文は技術的には可能ですが、推奨されません。 「 インライン スタイルとテンプレート」を参照してください。 または を使用したバインディング参照も可能ですが、一般的ではありません。

依存プロパティ情報

識別子フィールド CellTemplateProperty
に設定されたメタデータ プロパティ true なし

適用対象

こちらもご覧ください