added SSCLI 1.0
[windows-sources.git] / sdk / samples / WPFSamples / PointSample / csharp / app.xaml
blobbd7bb1095c0894ebaedb2029221fa4c2ffa3d957
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="PointSample.app"
5   Startup="AppStartingUp"
6   >
7   <!-- Resources & Styles defined in this section will impact the entire application.  -->
8   <Application.Resources>
9  
10       <Style TargetType="{x:Type RadioButton}">
11       <Setter Property="RadioButton.Margin" Value="0,10,0,0" />
12       </Style>
13       <Style TargetType="{x:Type TextBlock}">
14           <Setter Property="TextBlock.TextWrapping" Value="Wrap" />
15       </Style>
16   </Application.Resources>
17 </Application>