| 12345678910111213141516 |
- using System;
- namespace Avalonia.Controls
- {
- [Obsolete("This class exists to maintain backwards compatiblity with existing code. Use NativeMenuItemSeparator instead")]
- public class NativeMenuItemSeperator : NativeMenuItemSeparator
- {
- }
- public class NativeMenuItemSeparator : NativeMenuItemBase
- {
- [Obsolete("This is a temporary hack to make our MenuItem recognize this as a separator, don't use", true)]
- public string Header => "-";
- }
- }
|