[ Web Proxy ]
URL:
Viewing: https://docs.unity3d.com/ScriptReference/IMGUI.Controls.AdvancedDropdown.html [Back]  [Original]

Unity - Scripting API: AdvancedDropdown
Version: Unity 6.5 (6000.5)
    • Supported
    • Legacy
    LanguageEnglish
    • C#

    AdvancedDropdown

    class in UnityEditor.IMGUI.Controls

    Suggest a change

    Success!

    Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

    Close

    Submission failed

    For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

    Close
    Your name Your email Suggestion* Submit suggestion

    Cancel

    Description

    Inherit from this class to implement your own drop-down control.

    using UnityEditor;
    using UnityEngine;
    using UnityEditor.IMGUI.Controls;

    class WeekdaysDropdown : AdvancedDropdown { public WeekdaysDropdown(AdvancedDropdownState state) : base(state) { }

    protected override AdvancedDropdownItem BuildRoot() { var root = new AdvancedDropdownItem("Weekdays");

    var firstHalf = new AdvancedDropdownItem("First half"); var secondHalf = new AdvancedDropdownItem("Second half"); var weekend = new AdvancedDropdownItem("Weekend");

    firstHalf.AddChild(new AdvancedDropdownItem("Monday")); firstHalf.AddChild(new AdvancedDropdownItem("Tuesday")); secondHalf.AddChild(new AdvancedDropdownItem("Wednesday")); secondHalf.AddChild(new AdvancedDropdownItem("Thursday")); weekend.AddChild(new AdvancedDropdownItem("Friday")); weekend.AddChild(new AdvancedDropdownItem("Saturday")); weekend.AddChild(new AdvancedDropdownItem("Sunday"));

    root.AddChild(firstHalf); root.AddChild(secondHalf); root.AddChild(weekend);

    return root; } }

    public class AdvancedDropdownTestWindow : EditorWindow { void OnGUI() { var rect = GUILayoutUtility.GetRect(new GUIContent("Show"), EditorStyles.toolbarButton); if (GUI.Button(rect, new GUIContent("Show"), EditorStyles.toolbarButton)) { var dropdown = new WeekdaysDropdown(new AdvancedDropdownState()); dropdown.Show(rect); } } }

    Properties

    Property Description
    minimumSizeMinimum size of the drop-down window. By default, the drop-down will try to match the width of the given rect or the rendered content.

    Public Methods

    Method Description
    ShowCall this method to show the drop-down at the given position.

    Protected Methods

    Method Description
    BuildRootImplement this method to generate the content of the drop-down. This method is called when the drop-down is being shown.
    ItemSelectedOverride this method to get notified when an item is selected.

    Web Proxy Viewer  |  New URL  |  Original Page