-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.xaml
25 lines (22 loc) · 1.06 KB
/
App.xaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<Application x:Class="Microsoft.Samples.Kinect.ControlsBasics.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
StartupUri="MainWindow.xaml">
<Application.Resources>
<ResourceDictionary>
<SolidColorBrush x:Key="BlueBrush" Color="#FF00BCF2" />
<SolidColorBrush x:Key="MediumGreyBrush" Color="#ff6e6e6e"/>
<Style TargetType="Button">
<Setter Property="Height" Value="208" />
<Setter Property="Width" Value="208" />
</Style>
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source="Common/StandardStyles.xaml"/>
<!--
Styles that define look and feel of Kinect controls
-->
<ResourceDictionary Source="HandPointers/HandPointerStyles.xaml"/>
</ResourceDictionary.MergedDictionaries>
</ResourceDictionary>
</Application.Resources>
</Application>