Skip to content

Commit 4d78a48

Browse files
committed
Regenerated 8.1 docs from CommunityToolkit/Windows@9c7642f
1 parent d28bb67 commit 4d78a48

File tree

1 file changed

+10
-8
lines changed

1 file changed

+10
-8
lines changed

docs/windows/Primitives/DockPanel.md

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,15 @@ You can set DockPanel LastChildFill property to true if you want the last item a
2525

2626
```xaml
2727
<Page ...
28-
xmlns:controls="using:CommunityToolkit.WinUI.Controls"/>
29-
30-
<controls:DockPanel Name="SampleDockPanel" Margin="2" Background="LightGray" LastChildFill="False" >
31-
<StackPanel Height="100" controls:DockPanel.Dock="Top" Background="Black"></StackPanel>
32-
<StackPanel Width="100" controls:DockPanel.Dock="Left" Background="Red"></StackPanel>
33-
<StackPanel Height="100" controls:DockPanel.Dock="Bottom" Background="Green"></StackPanel>
34-
<StackPanel Width="100" controls:DockPanel.Dock="Right" Background="Blue"></StackPanel>
35-
</controls:DockPanel>
28+
xmlns:controls="using:CommunityToolkit.WinUI.Controls">
29+
30+
<controls:DockPanel Name="SampleDockPanel" Margin="2" Background="LightGray" LastChildFill="False" >
31+
<StackPanel Height="100" controls:DockPanel.Dock="Top" Background="Black"></StackPanel>
32+
<StackPanel Width="100" controls:DockPanel.Dock="Left" Background="Red"></StackPanel>
33+
<StackPanel Height="100" controls:DockPanel.Dock="Bottom" Background="Green"></StackPanel>
34+
<StackPanel Width="100" controls:DockPanel.Dock="Right" Background="Blue"></StackPanel>
35+
</controls:DockPanel>
36+
37+
</Page>
3638
```
3739

0 commit comments

Comments
 (0)