Browse Source

extend example with `StaticResource` that does not reference a static property

pull/2536/head
bert2 5 years ago committed by wwh1004
parent
commit
c9f31d0dc1
  1. 5
      ILSpy.BamlDecompiler.Tests/Cases/Issue2116.xaml

5
ILSpy.BamlDecompiler.Tests/Cases/Issue2116.xaml

@ -5,5 +5,8 @@ @@ -5,5 +5,8 @@
<Style x:Key="TestStyle2" BasedOn="{StaticResource {x:Static local:Issue2116.StyleKey1}}" />
</ResourceDictionary>
</FrameworkElement.Resources>
<Grid Style="{StaticResource {x:Static local:Issue2116.StyleKey1}}" />
<Grid>
<Grid Style="{StaticResource TestStyle1}" />
<Grid Style="{StaticResource {x:Static local:Issue2116.StyleKey1}}" />
</Grid>
</UserControl>

Loading…
Cancel
Save