| 1234567891011121314151617181920212223242526272829 |
- <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>
- <StackPanel>
- <StackPanel Orientation="Horizontal" >
- <Label Content="LoginIP: "></Label>
- <TextBox Width="120" Text="{Binding LoginIP}" />
- <Label Content="LoginPort: "></Label>
- <TextBox Width="40" Text="{Binding LoginPort}" />
- <Label Content="Account: "></Label>
- <TextBox Width="120" Text="{Binding Account}" />
- <Label Content="Password: "></Label>
- <TextBox Width="120" Text="{Binding Password}" />
- <Button Name="btnLogin" Content="Login" Width="80" Height="25" Click="btnLogin_Click" />
- <TextBlock></TextBlock>
- </StackPanel>
- <StackPanel Orientation="Horizontal">
- <TextBox Name="tbCommand" Width="400" Text="{Binding Command}"></TextBox>
- <Button Name="btnSendCommand" Content="发送" Click="btnSendCommand_Click"
- IsEnabled="{Binding IsEnableSendCommandButton}"></Button>
- </StackPanel>
- </StackPanel>
- </Grid>
- </UserControl>
|