您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

MenuItemCollection.cs 531 B

1年前
12345678910111213141516171819
  1. using System.Windows;
  2. using System.Windows.Controls;
  3. namespace BPA.UIControl
  4. {
  5. /// <summary>
  6. /// The MenuItemCollection provides typed collection of HamburgerMenuItemBase.
  7. /// form https://github.com/MahApps/MahApps.Metro
  8. /// MahApps.Metro.Controls.HamburgerMenu
  9. /// </summary>
  10. public class MenuItemCollection : FreezableCollection<Control>
  11. {
  12. /// <inheritdoc/>
  13. protected override Freezable CreateInstanceCore()
  14. {
  15. return new MenuItemCollection();
  16. }
  17. }
  18. }