|
@@ -8,17 +8,23 @@
|
|
|
Title="MainWindow" Height="450" Width="800" Loaded="Window_Loaded" Closing="Window_Closing">
|
|
Title="MainWindow" Height="450" Width="800" Loaded="Window_Loaded" Closing="Window_Closing">
|
|
|
<Grid>
|
|
<Grid>
|
|
|
<Grid.RowDefinitions>
|
|
<Grid.RowDefinitions>
|
|
|
- <RowDefinition Height="70"/>
|
|
|
|
|
|
|
+ <RowDefinition Height="80"/>
|
|
|
<RowDefinition Height="*"/>
|
|
<RowDefinition Height="*"/>
|
|
|
</Grid.RowDefinitions>
|
|
</Grid.RowDefinitions>
|
|
|
<Grid Grid.Row="0" Background="#FF0050FF">
|
|
<Grid Grid.Row="0" Background="#FF0050FF">
|
|
|
- <Button x:Name="HomeButton" HorizontalAlignment="Left" VerticalAlignment="Center" Click="HomeButton_Click" Width="45" Height="65" Background="{x:Null}">
|
|
|
|
|
|
|
+ <Grid.ColumnDefinitions>
|
|
|
|
|
+ <ColumnDefinition Width="55"/>
|
|
|
|
|
+ <ColumnDefinition Width="*"/>
|
|
|
|
|
+ </Grid.ColumnDefinitions>
|
|
|
|
|
+ <Button Grid.Column="0" x:Name="HomeButton" HorizontalAlignment="Left" VerticalAlignment="Center" Click="HomeButton_Click" Width="55" Background="{x:Null}" Height="80">
|
|
|
<StackPanel>
|
|
<StackPanel>
|
|
|
<Image Source="/FromImage/菜单_白.png" Stretch="Fill" HorizontalAlignment="Center"/>
|
|
<Image Source="/FromImage/菜单_白.png" Stretch="Fill" HorizontalAlignment="Center"/>
|
|
|
<TextBlock Text="菜单" HorizontalAlignment="Center" Foreground="White" />
|
|
<TextBlock Text="菜单" HorizontalAlignment="Center" Foreground="White" />
|
|
|
</StackPanel>
|
|
</StackPanel>
|
|
|
</Button>
|
|
</Button>
|
|
|
-
|
|
|
|
|
|
|
+ <StackPanel Grid.Column="1" x:Name="HeardPanel" Orientation="Horizontal">
|
|
|
|
|
+
|
|
|
|
|
+ </StackPanel>
|
|
|
</Grid>
|
|
</Grid>
|
|
|
<Grid Grid.Row="1">
|
|
<Grid Grid.Row="1">
|
|
|
<Frame x:Name="ShowFrame" Margin="0,0,0,0" NavigationUIVisibility="Hidden"/>
|
|
<Frame x:Name="ShowFrame" Margin="0,0,0,0" NavigationUIVisibility="Hidden"/>
|