ShellView.xaml 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  1. <Window x:Class="Venus_UI.Views.ShellView"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  5. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  6. WindowStartupLocation="CenterScreen"
  7. xmlns:prism="http://prismlibrary.com/"
  8. mc:Ignorable="d"
  9. Title="JetPlasma" Style="{StaticResource ShellWindow}" Loaded="CustomWnd_Loaded" Closed="CustomWnd_Closed">
  10. <Window.Resources>
  11. <!--通用TabControl样式-->
  12. <Style TargetType="{x:Type TabControl}" >
  13. <!--<Setter Property="Background" Value="#FFC5D0D8"/>-->
  14. <Setter Property="Background" Value="{StaticResource mainPageBrush}"/>
  15. <Setter Property="FontFamily" Value="Arial,SimSun"/>
  16. <Setter Property="FontSize" Value="13"></Setter>
  17. <Setter Property="ItemContainerStyle">
  18. <Setter.Value>
  19. <Style>
  20. <!--<Setter Property="Control.Height" Value="24"></Setter>-->
  21. <Setter Property="Control.Template">
  22. <Setter.Value>
  23. <ControlTemplate TargetType="{x:Type TabItem}">
  24. <Grid Margin="0 0 -10 0" Cursor="Hand">
  25. <!--<Path Data="M190 0 L 0 0 L 10 23 L 170 23 L 190 0" StrokeThickness="1" Fill="{TemplateBinding Background}"
  26. Stroke="Black">
  27. </Path>-->
  28. <!--<ContentPresenter Margin="10 3 10 0" ContentSource="Header" HorizontalAlignment="Center" />-->
  29. <Border Width="200" BorderThickness="2,0,0,0" BorderBrush="#36688C" x:Name="border1"/>
  30. <TextBlock Text="{TemplateBinding Header}" HorizontalAlignment="Center" FontSize="18" Foreground="White"/>
  31. </Grid>
  32. <ControlTemplate.Triggers>
  33. <Trigger Property="IsSelected" Value="True">
  34. <Trigger.Setters>
  35. <Setter TargetName="border1" Property="Background" Value="#0A8FD6"></Setter>
  36. <Setter Property="Panel.ZIndex" Value="1"></Setter>
  37. </Trigger.Setters>
  38. </Trigger>
  39. <Trigger Property="IsSelected" Value="False">
  40. <Trigger.Setters>
  41. <Setter TargetName="border1" Property="Background" Value="#043C64"></Setter>
  42. </Trigger.Setters>
  43. </Trigger>
  44. </ControlTemplate.Triggers>
  45. </ControlTemplate>
  46. </Setter.Value>
  47. </Setter>
  48. </Style>
  49. </Setter.Value>
  50. </Setter>
  51. <Setter Property="Template">
  52. <Setter.Value>
  53. <ControlTemplate TargetType="{x:Type TabControl}">
  54. <Grid ClipToBounds="True" KeyboardNavigation.TabNavigation="Local" SnapsToDevicePixels="True">
  55. <Grid.ColumnDefinitions>
  56. <ColumnDefinition Name="ColumnDefinition0" Width="*"/>
  57. </Grid.ColumnDefinitions>
  58. <Grid.RowDefinitions>
  59. <RowDefinition Name="RowDefinition0" />
  60. <RowDefinition Name="RowDefinition1" Height="25"/>
  61. </Grid.RowDefinitions>
  62. <StackPanel Name="HeaderPanel"
  63. Orientation="Horizontal"
  64. Grid.Row="1"
  65. Background="#043C64"
  66. Margin="0,0,0,0"
  67. Panel.ZIndex="1"
  68. IsItemsHost="True"
  69. KeyboardNavigation.TabIndex="1"/>
  70. <Border Name="ContentPanel"
  71. Grid.Row="0"
  72. Background="{TemplateBinding Panel.Background}"
  73. BorderBrush="{TemplateBinding Border.BorderBrush}"
  74. BorderThickness="{TemplateBinding Border.BorderThickness}"
  75. KeyboardNavigation.DirectionalNavigation="Contained"
  76. KeyboardNavigation.TabIndex="2"
  77. KeyboardNavigation.TabNavigation="Local">
  78. <ContentPresenter Name="PART_SelectedContentHost"
  79. Margin="{TemplateBinding Control.Padding}"
  80. Content="{TemplateBinding TabControl.SelectedContent}"
  81. ContentSource="SelectedContent"
  82. ContentStringFormat="{TemplateBinding TabControl.SelectedContentStringFormat}"
  83. ContentTemplate="{TemplateBinding TabControl.SelectedContentTemplate}"
  84. SnapsToDevicePixels="{TemplateBinding UIElement.SnapsToDevicePixels}"/>
  85. </Border>
  86. </Grid>
  87. </ControlTemplate>
  88. </Setter.Value>
  89. </Setter>
  90. </Style>
  91. <Style TargetType="Button" x:Key="navButton">
  92. <Setter Property="Cursor" Value="Hand"/>
  93. <Setter Property="Foreground" Value="#FF004294" />
  94. <Setter Property="BorderBrush" Value="Blue" />
  95. <Setter Property="Margin" Value="5"/>
  96. <Setter Property="FontFamily" Value="Arial,SimSun" />
  97. <Setter Property="FontSize" Value="22"/>
  98. <Setter Property="Height" Value="45"></Setter>
  99. <Setter Property="Width" Value="160"></Setter>
  100. <Setter Property="HorizontalAlignment" Value="Right"></Setter>
  101. <Setter Property="VerticalAlignment" Value="Top"></Setter>
  102. <Setter Property="Template">
  103. <Setter.Value>
  104. <ControlTemplate TargetType="ButtonBase">
  105. <Border BorderBrush="{TemplateBinding BorderBrush}" BorderThickness="{TemplateBinding BorderThickness}" Background="{TemplateBinding Background}">
  106. <ContentPresenter Content="{TemplateBinding ContentControl.Content}" ContentStringFormat="{TemplateBinding ContentControl.ContentStringFormat}" ContentTemplate="{TemplateBinding ContentControl.ContentTemplate}" HorizontalAlignment="{TemplateBinding Control.HorizontalContentAlignment}" Margin="{TemplateBinding Control.Padding}" RecognizesAccessKey="True" SnapsToDevicePixels="{TemplateBinding UIElement.SnapsToDevicePixels}" VerticalAlignment="{TemplateBinding Control.VerticalContentAlignment}" />
  107. </Border>
  108. </ControlTemplate>
  109. </Setter.Value>
  110. </Setter>
  111. <Setter Property="Background" >
  112. <Setter.Value>
  113. <ImageBrush ImageSource="pack://application:,,,/MECF.Framework.Common;component/Resources/Main/主菜单按钮.png">
  114. </ImageBrush>
  115. </Setter.Value>
  116. </Setter>
  117. <Style.Triggers>
  118. <Trigger Property="IsMouseOver" Value="True">
  119. <Setter Property="Background" >
  120. <Setter.Value>
  121. <ImageBrush ImageSource="pack://application:,,,/MECF.Framework.Common;component/Resources/Main/主菜单按钮_悬停.png">
  122. </ImageBrush>
  123. </Setter.Value>
  124. </Setter>
  125. </Trigger>
  126. <Trigger Property="IsPressed" Value="true">
  127. <Setter Property="Background" >
  128. <Setter.Value>
  129. <ImageBrush ImageSource="pack://application:,,,/MECF.Framework.Common;component/Resources/Main/主菜单按钮_点击.png">
  130. </ImageBrush>
  131. </Setter.Value>
  132. </Setter>
  133. </Trigger>
  134. </Style.Triggers>
  135. </Style>
  136. </Window.Resources>
  137. <Grid>
  138. <Grid.RowDefinitions>
  139. <RowDefinition Height="104"/>
  140. <RowDefinition />
  141. <RowDefinition Height="50"/>
  142. </Grid.RowDefinitions>
  143. <ContentControl x:Name="Top_Frame" Grid.Row="0" prism:RegionManager.RegionName="TopRegion"/>
  144. <ContentControl x:Name="Main_Frame" Grid.Row="1" prism:RegionManager.RegionName="MainRegion" MouseDoubleClick="Window_MouseDoubleClick"/>
  145. <StackPanel x:Name="Bottom_Frame" Grid.Row="2" Background="White" Orientation="Horizontal"/>
  146. </Grid>
  147. </Window>