Permalink
Fetching contributors…
Cannot retrieve contributors at this time
23 lines (22 sloc) 877 Bytes
<Page Name="root"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
x:Class="SDKSamples.ResourceMerge"
Background="{DynamicResource BodyBrush}">
<!--<SnippetMergedXAML>-->
<Page.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source="myresourcedictionary.xaml"/>
<ResourceDictionary Source="myresourcedictionary2.xaml"/>
</ResourceDictionary.MergedDictionaries>
</ResourceDictionary>
</Page.Resources>
<!--</SnippetMergedXAML>-->
<StackPanel>
<Button Content="{StaticResource MeaningOfLife}"></Button>
<Button Content="{StaticResource HelloWorld}"></Button>
<Button Click="NewD">Create or Load #3 Dictionary</Button>
<Button Click="Add2NewD">Add to #3 Dictionary</Button>
</StackPanel>
</Page>