GridViewColumn.CellTemplate 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置用于显示列单元格内容的模板。
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 用于显示 a 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 |
无 |