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