2025-04-01 13:41:50 +08:00

105 lines
5.5 KiB
XML

<Window x:Class="RIZO.Client.Start.Views.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:RIZO.Client.Start"
xmlns:prism="http://prismlibrary.com/"
mc:Ignorable="d"
WindowStartupLocation="CenterScreen" Background="Transparent"
FontFamily="Microsoft YaHei" FontSize="13" Foreground="#333" FontWeight="ExtraLight"
Title="MainWindow" Height="850" Width="1400">
<Window.Resources>
<ControlTemplate TargetType="Button" x:Key="TabCloseButtonTemp">
<Border VerticalAlignment="Center" HorizontalAlignment="Center" CornerRadius="3"
Background="Transparent" Name="back">
<Path Data="M0 0 8 8M0 8 8 0" Margin="5"
Stroke="{TemplateBinding Foreground}" StrokeThickness="1"/>
</Border>
<ControlTemplate.Triggers>
<Trigger Property="IsMouseOver" Value="True">
<Setter Property="Background" Value="#19000000" TargetName="back"/>
</Trigger>
</ControlTemplate.Triggers>
</ControlTemplate>
<Style TargetType="TabItem">
<Setter Property="Header" Value="{Binding DataContext.PageTitle}"/>
<Setter Property="Background" Value="Transparent"/>
<Setter Property="Margin" Value="2,0"/>
<Setter Property="Foreground" Value="#444"/>
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="TabItem">
<Grid Background="{TemplateBinding Background}">
<Grid.ColumnDefinitions>
<ColumnDefinition/>
<ColumnDefinition Width="auto" MaxWidth="30" MinWidth="10"/>
</Grid.ColumnDefinitions>
<TextBlock Text="{TemplateBinding Header}" VerticalAlignment="Center" Margin="10,5,5,5"/>
<Grid Grid.Column="1" Name="close_grid" Width="30" Visibility="Collapsed">
<Button Foreground="{TemplateBinding Foreground}" Template="{StaticResource TabCloseButtonTemp}"
Visibility="Collapsed" Name="close_btn"
Command="{Binding DataContext.CloseCommand}"
CommandParameter="{Binding DataContext.NavUri}"/>
</Grid>
</Grid>
<ControlTemplate.Triggers>
<DataTrigger Binding="{Binding DataContext.IsCanClose}" Value="True">
<Setter TargetName="close_grid" Property="Visibility" Value="Visible"/>
</DataTrigger>
<Trigger Property="IsMouseOver" Value="True">
<Setter Property="Visibility" Value="Visible" TargetName="close_btn"/>
</Trigger>
<Trigger Property="IsSelected" Value="True">
<Setter Property="Visibility" Value="Visible" TargetName="close_btn"/>
</Trigger>
</ControlTemplate.Triggers>
</ControlTemplate>
</Setter.Value>
</Setter>
<Style.Triggers>
<Trigger Property="IsMouseOver" Value="True">
<Setter Property="Background" Value="#EEE"/>
</Trigger>
<Trigger Property="IsSelected" Value="True">
<Setter Property="Background" Value="#FF0ABEFF"/>
<Setter Property="Foreground" Value="White"/>
</Trigger>
</Style.Triggers>
</Style>
</Window.Resources>
<WindowChrome.WindowChrome>
<WindowChrome NonClientFrameEdges="None" GlassFrameThickness="-1" ResizeBorderThickness="0"/>
</WindowChrome.WindowChrome>
<Grid Background="Transparent" Margin="1">
<DockPanel>
<Grid DockPanel.Dock="Left" Width="230" Background="#EEE">
<Grid.RowDefinitions>
<RowDefinition Height="auto"/>
<RowDefinition/>
</Grid.RowDefinitions>
<StackPanel>
<Image Source="pack://application:,,,/RIZO.Client.Assets;component/Images/Logo.png" Width="70"
Margin="0,30,0,0"/>
<TextBlock Text="DOAN" FontSize="20" FontWeight="Bold"
HorizontalAlignment="Center" Margin="0,30"/>
</StackPanel>
<!--放置菜单的区域-->
<ContentControl Grid.Row="1" prism:RegionManager.RegionName="LeftMenuTreeRegion"/>
</Grid>
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="70"/>
<RowDefinition/>
</Grid.RowDefinitions>
<ContentControl prism:RegionManager.RegionName="MainHeaderRegion"/>
<TabControl prism:RegionManager.RegionName="MainContentRegion" Grid.Row="1"
BorderThickness="0,1,0,0">
</TabControl>
</Grid>
</DockPanel>
</Grid>
</Window>