Page1.axaml 949 B

1234567891011121314151617
  1. <UserControl xmlns="https://github.com/avaloniaui"
  2. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  3. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  4. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  5. mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
  6. x:Class="AvaloniaApplication2.Page1"
  7. xmlns:vm="using:AvaloniaApplication2.ViewModels"
  8. x:DataType="vm:MainWindowViewModel">
  9. <StackPanel VerticalAlignment="Center">
  10. <TextBlock Text="Введите логин:"/>
  11. <TextBox Text="{Binding Login}" Watermark="Введите логин"/>
  12. <TextBlock Text="Введите пароль:"/>
  13. <TextBox Text="{Binding Password}" Watermark="Введите пароль" PasswordChar="☢"/>
  14. <Button Content="Войти" Command="{Binding Enter}"/>
  15. <TextBlock Text="{Binding Info}" Foreground="Red"/>
  16. </StackPanel>
  17. </UserControl>