App.xaml.cs 396 B

12345678910111213141516
  1. // Copyright (c) The Avalonia Project. All rights reserved.
  2. // Licensed under the MIT license. See licence.md file in the project root for full license information.
  3. using Avalonia;
  4. using Avalonia.Markup.Xaml;
  5. namespace VirtualizationTest
  6. {
  7. public class App : Application
  8. {
  9. public override void Initialize()
  10. {
  11. AvaloniaXamlLoader.Load(this);
  12. }
  13. }
  14. }