File: Core\IMenuFlyout.cs | Web Access |
Project: src\src\Core\src\Core.csproj (Microsoft.Maui) |
using System.Collections.Generic; namespace Microsoft.Maui { /// <summary> /// Represents a flyout that displays a menu of commands. /// </summary> public interface IMenuFlyout : IList<IMenuElement>, IFlyout { } } |