希望这将是一个非常简单的答案,我只是没有看到我认为的树木的众所周知的木材。
我有一个 DataGridCell 样式,我想将单元格的内容绑定到图像的源属性,这是我目前使用的 XAML:
<Style x:Key="DataGridImageCellStyle" TargetType="{x:Type toolkit:DataGridCell}">
<Setter Property="Background" Value="Transparent" />
<Setter Property="BorderBrush" Value="Transparent" />
<Setter Property="BorderThickness" Value="1" />
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type toolkit:DataGridCell}">
<Border Background="Transparent"
BorderBrush="{TemplateBinding BorderBrush}"
BorderThickness="0"
SnapsToDevicePixels="True">
<Image Source="{Binding RelativeSource={RelativeSource AncestorType=toolkit:DataGridCell}, Path=Content}" />
</Border>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
请注意,目前我正在将图像源绑定到内容.. 这不起作用,我也尝试了值,但不起作用!
所以我的问题是,简单明了.. 将单元格的内容放入此图像的源属性的正确绑定是什么?
提前致谢!
皮特