SignUpView.xaml.cs 652 B

12345678910111213141516171819
  1. using Avalonia.Controls;
  2. namespace Generators.Sandbox.Controls;
  3. /// <summary>
  4. /// This is a sample view class with typed x:Name references generated using
  5. /// .NET 5 source generators. The class has to be partial because x:Name
  6. /// references are living in a separate partial class file. See also:
  7. /// https://devblogs.microsoft.com/dotnet/new-c-source-generator-samples/
  8. /// </summary>
  9. public partial class SignUpView : UserControl
  10. {
  11. public SignUpView()
  12. {
  13. // The InitializeComponent method is also generated automatically
  14. // and lives in the autogenerated part of the partial class.
  15. InitializeComponent();
  16. }
  17. }