Files
Learn-WinUI-3-Second-Edition/Chapter11/XamlDebugging/App.xaml
T
Alvin Ashcraft 404d155672 Add ch11 samples
2023-08-20 12:57:11 -04:00

17 lines
673 B
XML

<?xml version="1.0" encoding="utf-8"?>
<Application
x:Class="XamlDebugging.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:XamlDebugging">
<Application.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<XamlControlsResources xmlns="using:Microsoft.UI.Xaml.Controls" />
<!-- Other merged dictionaries here -->
</ResourceDictionary.MergedDictionaries>
<!-- Other app resources here -->
</ResourceDictionary>
</Application.Resources>
</Application>