MissRecordWindow.xaml 1.1 KB

123456789101112131415161718192021
  1. <Window x:Class="AGV_WPF.MissRecordWindow"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. Title="MissRecordWindow" Height="221" Width="426" FontSize="16">
  5. <Grid>
  6. <Grid.RowDefinitions>
  7. <RowDefinition Height="34*" />
  8. <RowDefinition Height="381*" />
  9. </Grid.RowDefinitions>
  10. <!--背景渐变-->
  11. <Grid.Background>
  12. <LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0" MappingMode="RelativeToBoundingBox">
  13. <GradientStop Color="White"/>
  14. <GradientStop Color="White" Offset="1"/>
  15. <GradientStop Color="#FF3D95C8"/>
  16. </LinearGradientBrush>
  17. </Grid.Background>
  18. <Button Content="从路线设置中导入" Grid.Row="1" Height="34" HorizontalAlignment="Left" Margin="133,32,0,0" Name="button1" VerticalAlignment="Top" Width="144" />
  19. <Button Content="查看" Grid.Row="1" Height="29" HorizontalAlignment="Left" Margin="166,87,0,0" Name="button2" VerticalAlignment="Top" Width="75" />
  20. </Grid>
  21. </Window>