| 123456789101112131415161718192021222324 |
- <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="btnStart" Content="Login" Width="80" Height="25" Click="btnLogin_Click" />
- <TextBlock></TextBlock>
- </StackPanel>
- </StackPanel>
- </Grid>
- </UserControl>
|