Skip to content

Commit fee74a8

Browse files
Merge pull request #322 from skendrot/PanelProperties
Add spacing properties to docs
2 parents c208529 + 394d110 commit fee74a8

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

docs/controls/StaggeredPanel.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,10 @@ The [StaggeredPanel](https://docs.microsoft.com/en-us/dotnet/api/microsoft.toolk
3939

4040
| Property | Type | Description |
4141
| -- | -- | -- |
42+
| ColumnSpacing | double | Gets or sets the distance between columns |
4243
| DesiredColumnWidth | double | The desired width of each column. The width of columns can exceed the DesiredColumnWidth if the HorizontalAlignment is set to Stretch. |
4344
| Padding | Thickness | The dimensions of the space between the edge and its child as a Thickness value. Thickness is a structure that stores dimension values using pixel measures. |
45+
| RowSpacing | double | Gets or sets the vertical distance between items |
4446

4547
## Sample Project
4648

@@ -59,4 +61,4 @@ The [StaggeredPanel](https://docs.microsoft.com/en-us/dotnet/api/microsoft.toolk
5961

6062
## API
6163

62-
- [StaggeredPanel](https://github.com/Microsoft/WindowsCommunityToolkit//tree/master/Microsoft.Toolkit.Uwp.UI.Controls/StaggeredPanel)
64+
- [StaggeredPanel](https://github.com/Microsoft/WindowsCommunityToolkit//tree/master/Microsoft.Toolkit.Uwp.UI.Controls/StaggeredPanel)

docs/controls/WrapPanel.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,10 @@ When the Orientation is Vertical, HorizontalSpacing adds uniform spacing between
3333

3434
| Property | Type | Description |
3535
| -- | -- | -- |
36+
| HorizontalSpacing | double | Gets or sets the horizontal distance between items |
3637
| Orientation | Orientation | Gets or sets the orientation of the WrapPanel, Horizontal or vertical means that child controls will be added horizontally until the width of the panel can't fit more control then a new row is added to fit new horizontal added child controls, vertical means that child will be added vertically until the height of the panel is recieved then a new column is added |
3738
| Padding | Thickness | Gets or sets the distance between the border and its child object |
39+
| VerticalSpacing | double | Gets or sets the vertical distance between items |
3840

3941
## Examples
4042

0 commit comments

Comments
 (0)