我有一个 WPf ListView,我用 GridView 替换 View 来给我列等。
我想将单元格内容模板应用到列,并从单元格模板绑定到 GridViewColumn(我已经对列进行了子类化,它有一些额外的属性)
有任何想法吗?
那么这应该很容易:
<GridViewColumn x:Name="myColumn" Header="My Header">
<GridViewColumn.CellTemplate>
<DataTemplate>
<TextBlock Text="{Binding ElementName=myColumn, Path=Header}"
TextAlignment="Right" Width="auto"/>
</DataTemplate>
</GridViewColumn.CellTemplate>
只需命名您的列并在绑定中提供名称为 ElementName,您将能够绑定到列的属性。
这应该够了吧。