12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <Window
- x:Class="AutoDeploy.MainWindow"
- xmlns="https://github.com/avaloniaui"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:vm="using:AutoDeploy"
- Title="AutoDeploy"
- d:DesignHeight="450"
- d:DesignWidth="800"
- x:DataType="vm:MainWindowViewModel"
- DataContext="{x:Static vm:MainWindowViewModel.Instance}"
- mc:Ignorable="d">
- <StackPanel>
- <StackPanel VerticalAlignment="Center" Orientation="Horizontal">
- <UniformGrid Rows="1">
- <StackPanel Orientation="Horizontal">
- <TextBlock VerticalAlignment="Center" Text="IP" />
- <TextBox Width="180" Text="{Binding IP}" />
- </StackPanel>
- <StackPanel Orientation="Horizontal">
- <TextBlock VerticalAlignment="Center" Text="用户名" />
- <TextBox Width="180" Text="{Binding UserName}" />
- </StackPanel>
- <StackPanel Orientation="Horizontal">
- <TextBlock VerticalAlignment="Center" Text="密码" />
- <TextBox
- Width="180"
- PasswordChar="*"
- Text="{Binding Password}" />
- </StackPanel>
- </UniformGrid>
- <Button
- Width="66"
- HorizontalContentAlignment="Center"
- VerticalContentAlignment="Center"
- Command="{Binding StartCommand}"
- Content="开始"
- Cursor="Hand" />
- </StackPanel>
- </StackPanel>
- </Window>
|