12345678910111213141516171819 |
- <UserControl xmlns="https://github.com/avaloniaui"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:vm="using:AvaloniaApplicationPersonalPage.ViewModels"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
- x:DataType="vm:MainWindowViewModel"
- x:Class="AvaloniaApplicationPersonalPage.Views.AutoPage">
- <Grid>
- <StackPanel>
- <TextBlock>Введите логин</TextBlock>
- <TextBox Text="{Binding AutoPage.Login}"></TextBox>
- <TextBlock>Введите пароль</TextBlock>
- <TextBox PasswordChar="*" Text="{Binding AutoPage.Password}"></TextBox>
- <TextBlock Text="{Binding AutoPage.Message}"></TextBlock>
- <Button Command="{Binding Auto}">Авторизация</Button>
- </StackPanel>
- </Grid>
- </UserControl>
|