DataGridColumn.CellStyle 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置用于呈现列中单元格的样式。
public:
property System::Windows::Style ^ CellStyle { System::Windows::Style ^ get(); void set(System::Windows::Style ^ value); };
public System.Windows.Style CellStyle { get; set; }
member this.CellStyle : System.Windows.Style with get, set
Public Property CellStyle As Style
属性值
用于呈现列中的单元格的样式。 已注册的默认值为 null
。 有关可能影响该值的因素的信息,请参见 DependencyProperty。
注解
若要为单元格定义 Style ,请将 指定TargetType为 。DataGridCell
Style可以应用于表、列或单元格级别的单元格。 若要将 应用于 Style 列中的所有单元格,请设置 DataGridColumn.CellStyle 属性,该属性优先于 属性 DataGrid.CellStyle 。 若要将 应用于Style单个单元格,请直接在 DataGridCell 对象上设置 Style 属性,该属性优先于应用于该单元格的所有其他样式。