// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using System.Collections.Generic; using osu.Framework.Graphics; using osu.Game.Graphics.UserInterface; namespace osu.Game.Graphics.UserInterfaceV2 { public partial class LabelledDropdown : LabelledComponent, TItem> { public LabelledDropdown(bool padded) : base(padded) { } public IEnumerable Items { get => Component.Items; set => Component.Items = value; } public float DropdownWidth { get => Component.Width; set => Component.Width = value; } protected sealed override OsuDropdown CreateComponent() => CreateDropdown().With(d => { d.RelativeSizeAxes = Axes.X; }); protected virtual OsuDropdown CreateDropdown() => new Dropdown(); private partial class Dropdown : OsuDropdown { protected override DropdownMenu CreateMenu() => base.CreateMenu().With(menu => menu.MaxHeight = 200); } } }