Advertisement
Guest User

Will Pittenger

a guest
Jun 25th, 2019
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.88 KB | None | 0 0
  1. <Application
  2.     x:Class="Org.WillPittenger.YouTubeDownloader.App"
  3.     xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  4.     xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  5.     xmlns:local="Org.WillPittenger.YouTubeDownloader"
  6.     StartupUri="MainWnd.xaml">
  7.     <Application.Resources>
  8.         <Style
  9.             TargetType="BaseWnd">
  10.             <Setter
  11.                 Property="FontFamily"
  12.                 Value="Times New Roman" />
  13.             <Setter
  14.                 Property="Padding"
  15.                 Value="5" />
  16.             <Setter
  17.                 Property="Background"
  18.                 Value="{DynamicResource {x:Static SystemColors.ControlBrushKey}}" />
  19.         </Style>
  20.         <Style
  21.             x:Key="BaseWndT"
  22.             TargetType="BaseWnd">
  23.             <Setter
  24.                 Property="FontFamily"
  25.                 Value="Times New Roman" />
  26.             <Setter
  27.                 Property="Padding"
  28.                 Value="5" />
  29.             <Setter
  30.                 Property="Background"
  31.                 Value="{DynamicResource {x:Static SystemColors.ControlBrushKey}}" />
  32.         </Style>
  33.     </Application.Resources>
  34. </Application>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement