12345678910111213 |
- <Window x:Class="AGV_WPF.TestTrafficWindow"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- Title="TestTrafficWindow" Height="300" Width="639">
- <Grid Height="262" Width="554">
- <Grid.RowDefinitions>
- <RowDefinition Height="310*" />
- <RowDefinition Height="72*" />
- </Grid.RowDefinitions>
- <Button Content="刷新" Height="61" HorizontalAlignment="Right" Margin="0,194,12,0" Name="btnClear" VerticalAlignment="Top" Width="113" Click="btnClear_Click" Grid.RowSpan="2" />
- <Button Content="获取数据库" Height="61" HorizontalAlignment="Left" Margin="16,194,0,0" Name="btnAgvData" VerticalAlignment="Top" Width="123" Click="btnAgvData_Click" Grid.RowSpan="2" />
- </Grid>
- </Window>
|