Skip to content

Commit 58041b5

Browse files
committed
Merge pull request #5944 from MarchingCube/control-docs
Class level docs for basic controls.
1 parent 2364f66 commit 58041b5

File tree

8 files changed

+53
-2
lines changed

8 files changed

+53
-2
lines changed

src/Avalonia.Controls/DateTimePickers/TimePicker.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
namespace Avalonia.Controls
99
{
1010
/// <summary>
11-
/// A control to allow the user to select a time
11+
/// A control to allow the user to select a time.
1212
/// </summary>
1313
[PseudoClasses(":hasnotime")]
1414
public class TimePicker : TemplatedControl

src/Avalonia.Controls/Expander.cs

+21
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,35 @@
44

55
namespace Avalonia.Controls
66
{
7+
/// <summary>
8+
/// Direction in which an <see cref="Expander"/> control opens.
9+
/// </summary>
710
public enum ExpandDirection
811
{
12+
/// <summary>
13+
/// Opens down.
14+
/// </summary>
915
Down,
16+
17+
/// <summary>
18+
/// Opens up.
19+
/// </summary>
1020
Up,
21+
22+
/// <summary>
23+
/// Opens left.
24+
/// </summary>
1125
Left,
26+
27+
/// <summary>
28+
/// Opens right.
29+
/// </summary>
1230
Right
1331
}
1432

33+
/// <summary>
34+
/// A control with a header that has a collapsible content section.
35+
/// </summary>
1536
[PseudoClasses(":expanded", ":up", ":down", ":left", ":right")]
1637
public class Expander : HeaderedContentControl
1738
{

src/Avalonia.Controls/Grid.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
namespace Avalonia.Controls
1818
{
1919
/// <summary>
20-
/// Grid
20+
/// Defines a flexible grid area that consists of columns and rows.
2121
/// </summary>
2222
public class Grid : Panel
2323
{
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,28 @@
11
namespace Avalonia.Controls.Primitives
22
{
3+
/// <summary>
4+
/// Specifies the visibility of a <see cref="ScrollBar"/> for scrollable content.
5+
/// </summary>
36
public enum ScrollBarVisibility
47
{
8+
/// <summary>
9+
/// No scrollbars and no scrolling in this dimension.
10+
/// </summary>
511
Disabled,
12+
13+
/// <summary>
14+
/// The scrollbar should be visible only if there is more content than fits in the viewport.
15+
/// </summary>
616
Auto,
17+
18+
/// <summary>
19+
/// The scrollbar should never be visible. No space should ever be reserved for the scrollbar.
20+
/// </summary>
721
Hidden,
22+
23+
/// <summary>
24+
/// The scrollbar should always be visible. Space should always be reserved for the scrollbar.
25+
/// </summary>
826
Visible,
927
}
1028
}

src/Avalonia.Controls/RadioButton.cs

+3
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@
88

99
namespace Avalonia.Controls
1010
{
11+
/// <summary>
12+
/// Represents a button that allows a user to select a single option from a group of options.
13+
/// </summary>
1114
public class RadioButton : ToggleButton
1215
{
1316
private class RadioButtonGroupManager

src/Avalonia.Controls/RelativePanel.cs

+3
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@
88

99
namespace Avalonia.Controls
1010
{
11+
/// <summary>
12+
/// Defines an area within which you can position and align child objects in relation to each other or the parent panel.
13+
/// </summary>
1114
public partial class RelativePanel : Panel
1215
{
1316
private readonly Graph _childGraph;

src/Avalonia.Controls/RepeatButton.cs

+3
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44

55
namespace Avalonia.Controls
66
{
7+
/// <summary>
8+
/// Represents a control that raises its <see cref="Button.Click"/> event repeatedly when it is pressed and held.
9+
/// </summary>
710
public class RepeatButton : Button
811
{
912
/// <summary>

src/Avalonia.Controls/TextBox.cs

+3
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@
1717

1818
namespace Avalonia.Controls
1919
{
20+
/// <summary>
21+
/// Represents a control that can be used to display or edit unformatted text.
22+
/// </summary>
2023
[PseudoClasses(":empty")]
2124
public class TextBox : TemplatedControl, UndoRedoHelper<TextBox.UndoRedoState>.IUndoRedoHost
2225
{

0 commit comments

Comments
 (0)