1
0

App.xaml.cs 441 B

1234567891011121314151617
  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.Controls;
  5. using Avalonia.Markup.Xaml;
  6. namespace VirtualizationDemo
  7. {
  8. public class App : Application
  9. {
  10. protected override void OnStartup(StartupEventArgs e)
  11. {
  12. AvaloniaXamlLoader.Load(this);
  13. }
  14. }
  15. }