| 123456789101112131415 |
- <UserControl x:Class="Modules.Robot.RobotView"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:Robot="clr-namespace:Modules.Robot"
- mc:Ignorable="d"
- d:DesignHeight="600" d:DesignWidth="800" d:DataContext="{d:DesignInstance Robot:RobotViewModel}">
- <Grid Height="597" Margin="1,1,1,4">
- <StackPanel>
- <Button Name="btnStart" Content="开始" Width="80" Height="25" Click="btnStart_Click" />
- <TextBox Name="tbLog" Text="{Binding LogText, Mode=OneWay}" Height="700"
- VerticalScrollBarVisibility="Visible" />
- </StackPanel>
- </Grid>
- </UserControl>
|