added samples
[windows-sources.git] / sdk / samples / WPFSamples / Point3DSample / csharp / app.xaml
blobdc9ce5176d5104c977c2d45b1260a22cca5bfbc4
1 <Application
2   xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
3   xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
4   x:Class="ThreeDPointSample.app"
5   Startup="AppStartingUp"
6   >
7   <!-- Resources & Styles defined in this section will impact the entire application.  -->
8     <Application.Resources>
9         <Style TargetType="{x:Type RadioButton}">
10             <Setter Property="RadioButton.Margin" Value="0,10,0,0" />
11         </Style>
12         <Style TargetType="{x:Type TextBlock}">
13             <Setter Property="TextBlock.TextWrapping" Value="Wrap" />
14         </Style>
15     </Application.Resources>
16 </Application>