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