MainView.axaml 909 B

1234567891011121314
  1. <UserControl x:Class="SingleProjectSandbox.MainView"
  2. xmlns="https://github.com/avaloniaui"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:local="using:SingleProjectSandbox"
  5. x:DataType="local:MainView">
  6. <StackPanel Margin="100 50" Spacing="50">
  7. <TextBlock Text="Login" Foreground="White" />
  8. <TextBox TextInputOptions.Multiline="True" AcceptsReturn="True" Watermark="Text" Height="200" TextWrapping="Wrap"/>
  9. <TextBox Watermark="Username" TextInputOptions.ContentType="Email" TextInputOptions.ReturnKeyType="Done" />
  10. <TextBox Watermark="Password" PasswordChar="*" TextInputOptions.ContentType="Password" />
  11. <TextBox Watermark="Pin" PasswordChar="*" TextInputOptions.ContentType="Digits" TextInputOptions.ReturnKeyType="Next" />
  12. <Button Content="Login" Command="{Binding ButtonCommand}" />
  13. </StackPanel>
  14. </UserControl>