mirror of
https://github.com/ppy/osu.git
synced 2025-02-01 20:25:34 +08:00
Add missing xmldoc
This commit is contained in:
parent
95e26e6fd8
commit
0bab755be3
@ -29,7 +29,14 @@ namespace osu.Game.Graphics.UserInterfaceV2
|
|||||||
|
|
||||||
private readonly BindableWithCurrent<bool> current = new BindableWithCurrent<bool>();
|
private readonly BindableWithCurrent<bool> current = new BindableWithCurrent<bool>();
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Caption describing this slider bar, displayed on top of the controls.
|
||||||
|
/// </summary>
|
||||||
public LocalisableString Caption { get; init; }
|
public LocalisableString Caption { get; init; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Hint text containing an extended description of this slider bar, displayed in a tooltip when hovering the caption.
|
||||||
|
/// </summary>
|
||||||
public LocalisableString HintText { get; init; }
|
public LocalisableString HintText { get; init; }
|
||||||
|
|
||||||
private Box background = null!;
|
private Box background = null!;
|
||||||
|
@ -50,7 +50,14 @@ namespace osu.Game.Graphics.UserInterfaceV2
|
|||||||
|
|
||||||
private readonly BindableNumberWithCurrent<T> current = new BindableNumberWithCurrent<T>();
|
private readonly BindableNumberWithCurrent<T> current = new BindableNumberWithCurrent<T>();
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Caption describing this slider bar, displayed on top of the controls.
|
||||||
|
/// </summary>
|
||||||
public LocalisableString Caption { get; init; }
|
public LocalisableString Caption { get; init; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Hint text containing an extended description of this slider bar, displayed in a tooltip when hovering the caption.
|
||||||
|
/// </summary>
|
||||||
public LocalisableString HintText { get; init; }
|
public LocalisableString HintText { get; init; }
|
||||||
|
|
||||||
private Box background = null!;
|
private Box background = null!;
|
||||||
|
@ -59,8 +59,19 @@ namespace osu.Game.Graphics.UserInterfaceV2
|
|||||||
|
|
||||||
private readonly BindableWithCurrent<string> current = new BindableWithCurrent<string>();
|
private readonly BindableWithCurrent<string> current = new BindableWithCurrent<string>();
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Caption describing this slider bar, displayed on top of the controls.
|
||||||
|
/// </summary>
|
||||||
public LocalisableString Caption { get; init; }
|
public LocalisableString Caption { get; init; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Hint text containing an extended description of this slider bar, displayed in a tooltip when hovering the caption.
|
||||||
|
/// </summary>
|
||||||
public LocalisableString HintText { get; init; }
|
public LocalisableString HintText { get; init; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Text displayed in the text box when its contents are empty.
|
||||||
|
/// </summary>
|
||||||
public LocalisableString PlaceholderText { get; init; }
|
public LocalisableString PlaceholderText { get; init; }
|
||||||
|
|
||||||
private Box background = null!;
|
private Box background = null!;
|
||||||
|
Loading…
Reference in New Issue
Block a user