13 lines
644 B
XML
13 lines
644 B
XML
<UserControl xmlns="https://github.com/avaloniaui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:vm="using:Flawless.Client.ViewModels.ModalBox"
|
|
x:Class="Flawless.Client.Views.ModalBox.UserCreateDialogView"
|
|
x:DataType="vm:UserCreateDialogViewModel">
|
|
|
|
<Grid Margin="10" RowDefinitions="Auto,Auto,Auto">
|
|
<TextBox Grid.Row="0" Watermark="Username" Text="{Binding Username}"/>
|
|
<TextBox Grid.Row="1" Watermark="Password"
|
|
PasswordChar="*" Text="{Binding Password}"/>
|
|
<TextBox Grid.Row="2" Watermark="Email" Text="{Binding Email}"/>
|
|
</Grid>
|
|
</UserControl> |