DropDownPage.xaml.cs 533 B

123456789101112131415161718192021
  1. using Avalonia.Controls;
  2. using Avalonia.Markup.Xaml;
  3. namespace ControlCatalog.Pages
  4. {
  5. public class DropDownPage : UserControl
  6. {
  7. public DropDownPage()
  8. {
  9. this.InitializeComponent();
  10. }
  11. private void InitializeComponent()
  12. {
  13. AvaloniaXamlLoader.Load(this);
  14. var fontDropDown = this.Find<DropDown>("fontDropDown");
  15. fontDropDown.Items = Avalonia.Media.FontFamily.SystemFontFamilies;
  16. fontDropDown.SelectedIndex = 0;
  17. }
  18. }
  19. }