AGVManage.xaml 884 B

1234567891011121314151617
  1. <Window x:Class="AGV_WPF.AGVManage"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. Title="AGVManage" Height="770" Width="1300" WindowStartupLocation="CenterScreen" Icon="/AGV_WPF;component/Image/AGV_24.png" ResizeMode="NoResize">
  5. <Grid>
  6. <!--背景渐变-->
  7. <Grid.Background>
  8. <LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0" MappingMode="RelativeToBoundingBox">
  9. <GradientStop Color="White"/>
  10. <GradientStop Color="White" Offset="1"/>
  11. <GradientStop Color="#FF3D95C8"/>
  12. </LinearGradientBrush>
  13. </Grid.Background>
  14. <Frame NavigationUIVisibility="Hidden" Name="frameNav" Source="menuPage.xaml" HorizontalAlignment="Center" VerticalAlignment="Center"/>
  15. </Grid>
  16. </Window>