Generic.xaml 3.7 KB

123456789101112131415161718192021222324252627282930313233
  1. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  2. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  3. <Style x:Key="textBlockStyle" TargetType="TextBlock">
  4. <!--字体渐变-->
  5. <Setter Property="Foreground">
  6. <Setter.Value>
  7. <LinearGradientBrush StartPoint="0.5,0" EndPoint="0.5,0.5">
  8. <GradientStop Color="#FFFFE787" Offset="0.0" />
  9. <!--<GradientStop Color="#FFFFE787" Offset="0.25" />-->
  10. <GradientStop Color="White" Offset="0.5" />
  11. </LinearGradientBrush>
  12. </Setter.Value>
  13. </Setter>
  14. <!--字体阴影-->
  15. <Setter Property="Effect">
  16. <Setter.Value>
  17. <DropShadowEffect Color="Black" Direction="120" ShadowDepth="1" Opacity="0.7" />
  18. </Setter.Value>
  19. </Setter>
  20. <Setter Property="FontFamily" Value="Microsoft YaHei"/>
  21. <Setter Property="FontWeight" Value="Bold"/>
  22. </Style>
  23. <Geometry x:Key="Icon_OverView">M 1202.39 520.275 l -466.759 -466.759 a 183.198 183.198 0 0 0 -258.797 0 L 10.0707 520.275 A 34.3711 34.3711 0 0 0 58.6714 568.841 L 525.448 102.116 a 114.387 114.387 0 0 1 161.544 0 L 1153.79 568.841 a 34.3711 34.3711 0 1 0 48.6007 -48.6179 M 988.013 464.198 a 34.3711 34.3711 0 0 0 -34.3711 34.3711 v 342.439 a 114.387 114.387 0 0 1 -114.267 114.249 H 373.081 a 114.387 114.387 0 0 1 -114.267 -114.249 V 498.57 a 34.3711 34.3711 0 0 0 -68.7421 0 v 342.439 a 183.215 183.215 0 0 0 183.009 182.992 h 466.295 a 183.215 183.215 0 0 0 183.009 -182.992 V 498.57 a 34.3711 34.3711 0 0 0 -34.3711 -34.3711 Z M 749.289 918.464 a 25.7783 25.7783 0 0 0 25.7783 -25.7783 v -113.064 a 168.762 168.762 0 0 0 -337.507 0 v 113.064 a 25.7783 25.7783 0 0 0 51.5566 0 v -113.064 a 117.205 117.205 0 0 1 234.393 0 v 113.064 a 25.7783 25.7783 0 0 0 25.7783 25.7783 Z</Geometry>
  24. <Geometry x:Key="Icon_RecipeView">M893.781333 990.72H129.365333c-51.2 0-92.842667-41.984-92.842666-93.354667V126.805333c0-51.541333 41.642667-93.525333 92.842666-93.525333H650.24c14.165333 0 25.6 11.434667 25.6 25.6s-11.434667 25.6-25.6 25.6H129.365333c-22.869333 0-41.642667 18.944-41.642666 42.325333v770.56c0 23.210667 18.602667 42.154667 41.642666 42.154667h764.416c22.869333 0 41.642667-18.944 41.642667-42.154667v-551.253333c0-14.165333 11.434667-25.6 25.6-25.6s25.6 11.434667 25.6 25.6v551.253333c-0.170667 51.541333-41.642667 93.354667-92.842667 93.354667z M469.162667 575.317333h-288.426667c-14.165333 0-25.6-11.434667-25.6-25.6s11.434667-25.6 25.6-25.6h288.256c14.165333 0 25.6 11.434667 25.6 25.6 0.170667 14.165333-11.434667 25.6-25.429333 25.6zM808.277333 677.034667H180.736c-14.165333 0-25.6-11.434667-25.6-25.6s11.434667-25.6 25.6-25.6h627.541333c14.165333 0 25.6 11.434667 25.6 25.6s-11.434667 25.6-25.6 25.6zM808.277333 778.752H180.736c-14.165333 0-25.6-11.434667-25.6-25.6s11.434667-25.6 25.6-25.6h627.541333c14.165333 0 25.6 11.434667 25.6 25.6s-11.434667 25.6-25.6 25.6zM570.88 575.317333c-6.144 0-12.117333-2.218667-16.725333-6.314666-5.632-4.778667-8.874667-11.946667-8.874667-19.285334v-84.138666c0-5.461333 1.706667-10.752 4.949333-15.189334L833.194667 66.730667a84.992 84.992 0 0 1 152.405333 37.717333c3.413333 22.357333-2.218667 44.885333-15.701333 63.146667L687.104 551.082667c-4.096 5.461333-10.24 9.216-16.896 10.069333l-95.573333 13.653333c-1.365333 0.341333-2.56 0.512-3.754667 0.512z m95.573333-39.424z m-69.973333-61.952v46.250667l55.637333-8.021333 276.48-374.954667c5.290667-7.168 7.509333-16.213333 6.144-25.088s-5.802667-16.725333-13.141333-22.186667c-15.018667-11.093333-36.181333-7.850667-47.274667 7.168L596.48 473.941333z</Geometry>
  25. </ResourceDictionary>