| 123456789101112131415161718192021 |
- using Robust.Client.AutoGenerated;
- using Robust.Client.UserInterface;
- namespace Content.Client.Options.UI;
- /// <summary>
- /// Standard UI control used for drop-downs in the options menu. Intended for use with <see cref="OptionsTabControlRow"/>.
- /// </summary>
- /// <seealso cref="OptionsTabControlRow.AddOptionDropDown{T}"/>
- [GenerateTypedNameReferences]
- public sealed partial class OptionDropDown : Control
- {
- /// <summary>
- /// The text describing what this drop-down controls.
- /// </summary>
- public string? Title
- {
- get => NameLabel.Text;
- set => NameLabel.Text = value;
- }
- }
|