我的问题如下:我有一个绑定到我的数据表的数据网格。我希望将 aButton
放置在行标题中,并且希望Button.Content
显示两个字符串的连接。我尝试将这两种解决方案结合起来:this和this
我分别取得了成功,但结合起来会产生一个空白Button.Content
。这是我尝试过的
<DataGrid.RowHeaderTemplate>
<DataTemplate>
<Button Width="90">
<Button.Content>
<MultiBinding StringFormat=" {0} - {1}">
<Binding RelativeSource="{RelativeSource Mode=FindAncestor, AncestorType={x:Type DataGridRow}}" Path="Item.Index"/>
<Binding RelativeSource="{RelativeSource Mode=FindAncestor, AncestorType={x:Type DataGridRow}}" Path="Item.Category"/>
</MultiBinding>
</Button.Content>
</Button>
</DataTemplate>
</DataGrid.RowHeaderTemplate
任何帮助,将不胜感激。