我正在尝试在WPF XAML中加载图像,但它正在从右侧截断。 这是我使用的风格:
<Style x:Key="PhotoStyle" TargetType="Image">
<Setter Property="Height" Value="60" />
<Setter Property="Width" Value="60" />
<Setter Property="Stretch" Value="Fill" />
<Setter Property="StretchDirection" Value="Both" />
</Style>
我尝试了“Stretch”和“StretchDirection”的各种组合,但没有运气。 请帮忙!
提前致谢!
以下风格实际上有效:
<Style x:Key="PhotoStyle" TargetType="Image">
<Setter Property="Height" Value="60" />
<Setter Property="Width" Value="60" />
<Setter Property="Stretch" Value="Fill" />
<Setter Property="StretchDirection" Value="Both" />
</Style>
我在我的巨大项目中检测到了一个代码,这个代码被覆盖了。 谢谢你们宝贵的时间!!