App.xaml 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. <Application x:Class="PRSServer.App"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  4. <Application.Resources>
  5. <!-- ~1~Control colors.@1@ -->
  6. <!-- <Color x:Key="WindowColor">#FFE8EDF9</Color> -->
  7. <!-- <Color x:Key="ContentAreaColorLight">#FFC5CBF9</Color> -->
  8. <!-- <Color x:Key="ContentAreaColorDark">#FF7381F9</Color> -->
  9. <!-- -->
  10. <!-- <Color x:Key="DisabledControlLightColor">#FFE8EDF9</Color> -->
  11. <!-- <Color x:Key="DisabledControlDarkColor">#FFC5CBF9</Color> -->
  12. <!-- <Color x:Key="DisabledForegroundColor">#FF888888</Color> -->
  13. <!-- -->
  14. <!-- <Color x:Key="SelectedBackgroundColor">#FFC5CBF9</Color> -->
  15. <!-- <Color x:Key="SelectedUnfocusedColor">#FFDDDDDD</Color> -->
  16. <!-- -->
  17. <!-- <Color x:Key="ControlLightColor">White</Color> -->
  18. <!-- <Color x:Key="ControlMediumColor">#FF7381F9</Color> -->
  19. <!-- <Color x:Key="ControlDarkColor">#FF211AA9</Color> -->
  20. <!-- -->
  21. <!-- <Color x:Key="ControlMouseOverColor">#FF3843C4</Color> -->
  22. <!-- <Color x:Key="ControlPressedColor">#FF211AA9</Color> -->
  23. <!-- -->
  24. <!-- -->
  25. <!-- <Color x:Key="GlyphColor">#FF444444</Color> -->
  26. <!-- <Color x:Key="GlyphMouseOver">sc#1, 0.004391443, 0.002428215, 0.242281124</Color> -->
  27. <!-- -->
  28. <!-- ~1~Border colors@1@ -->
  29. <!-- <Color x:Key="BorderLightColor">#FFCCCCCC</Color> -->
  30. <!-- <Color x:Key="BorderMediumColor">#FF888888</Color> -->
  31. <!-- <Color x:Key="BorderDarkColor">#FF444444</Color> -->
  32. <!-- -->
  33. <!-- <Color x:Key="PressedBorderLightColor">#FF888888</Color> -->
  34. <!-- <Color x:Key="PressedBorderDarkColor">#FF444444</Color> -->
  35. <!-- -->
  36. <!-- <Color x:Key="DisabledBorderLightColor">#FFAAAAAA</Color> -->
  37. <!-- <Color x:Key="DisabledBorderDarkColor">#FF888888</Color> -->
  38. <!-- -->
  39. <!-- <Color x:Key="DefaultBorderBrushDarkColor">Black</Color> -->
  40. <!-- -->
  41. <!-- ~1~Control-specific resources.@1@ -->
  42. <!-- <Color x:Key="HeaderTopColor">#FFC5CBF9</Color> -->
  43. <!-- <Color x:Key="DatagridCurrentCellBorderColor">Black</Color> -->
  44. <!-- <Color x:Key="SliderTrackDarkColor">#FFC5CBF9</Color> -->
  45. <!-- -->
  46. <!-- <Color x:Key="NavButtonFrameColor">#FF3843C4</Color> -->
  47. <!-- -->
  48. <!-- <LinearGradientBrush x:Key="MenuPopupBrush" -->
  49. <!-- EndPoint="0.5,1" -->
  50. <!-- StartPoint="0.5,0"> -->
  51. <!-- <GradientStop Color="{DynamicResource ControlLightColor}" -->
  52. <!-- Offset="0" /> -->
  53. <!-- <GradientStop Color="{DynamicResource ControlMediumColor}" -->
  54. <!-- Offset="0.5" /> -->
  55. <!-- <GradientStop Color="{DynamicResource ControlLightColor}" -->
  56. <!-- Offset="1" /> -->
  57. <!-- </LinearGradientBrush> -->
  58. <!-- -->
  59. <!-- <LinearGradientBrush x:Key="ProgressBarIndicatorAnimatedFill" -->
  60. <!-- StartPoint="0,0" -->
  61. <!-- EndPoint="1,0"> -->
  62. <!-- <LinearGradientBrush.GradientStops> -->
  63. <!-- <GradientStopCollection> -->
  64. <!-- <GradientStop Color="#000000FF" -->
  65. <!-- Offset="0" /> -->
  66. <!-- <GradientStop Color="#600000FF" -->
  67. <!-- Offset="0.4" /> -->
  68. <!-- <GradientStop Color="#600000FF" -->
  69. <!-- Offset="0.6" /> -->
  70. <!-- <GradientStop Color="#000000FF" -->
  71. <!-- Offset="1" /> -->
  72. <!-- </GradientStopCollection> -->
  73. <!-- </LinearGradientBrush.GradientStops> -->
  74. <!-- </LinearGradientBrush> -->
  75. <!-- -->
  76. <!-- <Style TargetType="{x:Type ContextMenu}"> -->
  77. <!-- <Setter Property="SnapsToDevicePixels" -->
  78. <!-- Value="True" /> -->
  79. <!-- <Setter Property="OverridesDefaultStyle" -->
  80. <!-- Value="True" /> -->
  81. <!-- <Setter Property="Grid.IsSharedSizeScope" -->
  82. <!-- Value="true" /> -->
  83. <!-- <Setter Property="HasDropShadow" -->
  84. <!-- Value="True" /> -->
  85. <!-- <Setter Property="Template"> -->
  86. <!-- <Setter.Value> -->
  87. <!-- <ControlTemplate TargetType="{x:Type ContextMenu}"> -->
  88. <!-- <Border x:Name="Border" -->
  89. <!-- Background="{StaticResource MenuPopupBrush}" -->
  90. <!-- BorderThickness="1"> -->
  91. <!-- <Border.BorderBrush> -->
  92. <!-- <SolidColorBrush Color="{StaticResource BorderMediumColor}" /> -->
  93. <!-- </Border.BorderBrush> -->
  94. <!-- <StackPanel IsItemsHost="True" -->
  95. <!-- KeyboardNavigation.DirectionalNavigation="Cycle" /> -->
  96. <!-- </Border> -->
  97. <!-- <ControlTemplate.Triggers> -->
  98. <!-- <Trigger Property="HasDropShadow" -->
  99. <!-- Value="true"> -->
  100. <!-- <Setter TargetName="Border" -->
  101. <!-- Property="Padding" -->
  102. <!-- Value="0,3,0,3" /> -->
  103. <!-- <Setter TargetName="Border" -->
  104. <!-- Property="CornerRadius" -->
  105. <!-- Value="4" /> -->
  106. <!-- </Trigger> -->
  107. <!-- </ControlTemplate.Triggers> -->
  108. <!-- </ControlTemplate> -->
  109. <!-- </Setter.Value> -->
  110. <!-- </Setter> -->
  111. <!-- </Style> -->
  112. </Application.Resources>
  113. </Application>