RobotView.xaml 848 B

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