App.xaml
 1  <Application
 2      x:Class="MeasureToolUI.App"
 3      xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
 4      xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
 5      xmlns:local="using:MeasureToolUI">
 6      <Application.Resources>
 7          <ResourceDictionary>
 8              <ResourceDictionary.MergedDictionaries>
 9                  <XamlControlsResources xmlns="using:Microsoft.UI.Xaml.Controls" />
10                  <!--  Other merged dictionaries here  -->
11              </ResourceDictionary.MergedDictionaries>
12              <!--  Other app resources here  -->
13          </ResourceDictionary>
14      </Application.Resources>
15  </Application>