namespace LemonUI.Menus { /// /// The behavior of the 's subtitle. /// public enum SubtitleBehavior { /// /// The subtitle will always be shown. /// AlwaysShow = 0, /// /// The subtitle will always be shown, except when is empty. /// ShowIfRequired = 1, /// /// The subtitle will never be shown. /// AlwaysHide = 2 } }