App.xaml 1.8 KB

12345678910111213141516171819202122232425262728293031323334
  1. <prism:PrismApplication
  2. x:Class="PDF_Office.App"
  3. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  4. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  5. xmlns:local="clr-namespace:PDF_Office"
  6. xmlns:prism="http://prismlibrary.com/">
  7. <Application.Resources>
  8. <ResourceDictionary>
  9. <ResourceDictionary.MergedDictionaries>
  10. <ResourceDictionary Source="pack://application:,,,/PDF Office;component/Styles/TabControlStyle.xaml" />
  11. <ResourceDictionary Source="pack://application:,,,/PDF Office;component/Styles/ComboxStyle.xaml" />
  12. <ResourceDictionary Source="pack://application:,,,/PDF Office;component/Styles/ListBoxStyle.xaml" />
  13. </ResourceDictionary.MergedDictionaries>
  14. <Style TargetType="{x:Type Hyperlink}">
  15. <Setter Property="Foreground" Value="#477EDE"></Setter>
  16. <Setter Property="TextBlock.TextDecorations" Value="{x:Null}"></Setter>
  17. <Style.Triggers>
  18. <Trigger Property="IsMouseOver" Value="True">
  19. <Setter Property="Foreground" Value="#6B97E4"></Setter>
  20. <!--在鼠标悬停显示下划线-->
  21. <Setter Property="TextBlock.TextDecorations">
  22. <Setter.Value>
  23. <TextDecorationCollection>
  24. <TextDecoration Location="Underline"/>
  25. </TextDecorationCollection>
  26. </Setter.Value>
  27. </Setter>
  28. </Trigger>
  29. </Style.Triggers>
  30. </Style>
  31. </ResourceDictionary>
  32. </Application.Resources>
  33. </prism:PrismApplication>