我使用路径来创建自定义对象:
<Path Style="{StaticResource ABC_Style}" ToolTip="object ABC" HorizontalAlignment="Center" VerticalAlignment="Center"></Path>
ABC_Style 定义为:
<Style x:Key="ABC_Style" TargetType="Path">
<Setter ..../>
<Setter Property="Fill" Value .../>
</Style>
现在,我必须将网格图像分配给对象(作为内容)。
问题:
- 有没有办法将图像集成到其中?
- 如果是这样,是否可以避免图片被拉伸?
谢谢。