26 lines
1.2 KiB
XML
26 lines
1.2 KiB
XML
<UserControl xmlns="https://github.com/avaloniaui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:vm="using:Policlinica.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:Class="Policlinica.Views.AutorizationView"
|
|
x:DataType="vm:AutorizationViewModel">
|
|
|
|
<StackPanel HorizontalAlignment="Center" VerticalAlignment="Center">
|
|
|
|
<TextBlock Text="Создание заказа" FontSize="20" FontWeight="Bold" HorizontalAlignment="Center"/>
|
|
|
|
<TextBlock Text="Логин:" />
|
|
<TextBox Text="{Binding Username}"/>
|
|
<TextBlock Text="Пароль:" />
|
|
<TextBox Text="{Binding Password}"/>
|
|
<StackPanel Orientation="Horizontal">
|
|
<Button Content="Продолжить"
|
|
Command="{Binding SaveDBCommand}"/>
|
|
<HyperlinkButton Content="Регистрация"
|
|
Command="{Binding OpenRegWinCommand}"/>
|
|
</StackPanel>
|
|
</StackPanel>
|
|
</UserControl>
|