运行Visual Studio 2017并以.NET 4.6.1为目标。考虑下面的XAML
。在XAML编辑器中,您可以看到两个圆圈,但在运行应用程序时,只会显示第二个圆圈。
<Window x:Class="WpfApp1.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<Window.Resources>
<Viewbox x:Key="MyBox" Stretch="Uniform">
<Ellipse Width="4" Height="4" Fill="Red"/>
</Viewbox>
</Window.Resources>
<StackPanel>
<ContentPresenter Width="100" Content="{StaticResource MyBox}"/>
<ContentPresenter Width="100" Content="{StaticResource MyBox}"/>
</StackPanel>
</Window>
如何重用Viewbox
资源?
答案 0 :(得分:2)
将其x:Shared
属性设置为false:
<Viewbox x:Key="MyBox" x:Shared="False" Stretch="Uniform">