NavigationView.MenuItems 属性

定义

获取 NavigationMenu 中显示的菜单项的集合。

适用于 UWP 的等效 WinUI 2 API:Windows 应用 SDK中 WinUI 的 Microsoft.UI.Xaml.Controls.NavigationView.MenuItems (,请参阅Windows 应用 SDK命名空间) 。

public:
 property IVector<Platform::Object ^> ^ MenuItems { IVector<Platform::Object ^> ^ get(); };
IVector<IInspectable> MenuItems();
public IList<object> MenuItems { get; }
var iVector = navigationView.menuItems;
Public ReadOnly Property MenuItems As IList(Of Object)

属性值

IVector<Object>

IList<Object>

IVector<Platform::Object>

IVector<IInspectable>

NavigationMenu 中显示的菜单项集合。 默认值为空集合。

适用于