-
Notifications
You must be signed in to change notification settings - Fork 298
Expand file tree
/
Copy pathGroupBoxExample.xaml
More file actions
42 lines (42 loc) · 2 KB
/
Copy pathGroupBoxExample.xaml
File metadata and controls
42 lines (42 loc) · 2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<UserControl
x:Class="WPFDevelopers.Samples.ExampleViews.Basics.GroupBoxExample"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:controls="clr-namespace:WPFDevelopers.Samples.Controls"
xmlns:wd="https://github.com/WPFDevelopersOrg/WPFDevelopers"
Background="{DynamicResource WD.BackgroundBrush}">
<controls:CodeViewer Header="GroupBox">
<wd:WDScrollViewer>
<StackPanel Margin="20,10">
<TextBlock
Margin="0,20,0,0"
FontSize="20"
Text="GroupBox" />
<UniformGrid Margin="0,10" Columns="2">
<GroupBox wd:ElementHelper.CornerRadius="3" Header="GroupBox1">
<Grid wd:PanelHelper.Spacing="2">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="Auto" />
<ColumnDefinition />
</Grid.ColumnDefinitions>
<TextBlock
HorizontalAlignment="Right"
VerticalAlignment="Center"
Text="TextBlock:" />
<Button Grid.Column="1" Content="Commit" />
</Grid>
</GroupBox>
<GroupBox
Height="400"
Margin="10,0"
Header="GroupBox1">
<Rectangle Fill="{DynamicResource WD.LightBrush}" />
</GroupBox>
</UniformGrid>
</StackPanel>
</wd:WDScrollViewer>
<controls:CodeViewer.SourceCodes>
<controls:SourceCodeModel CodeSource="/WPFDevelopers.SamplesCode;component/ExampleViews/Basics/GroupBoxExample.xaml" CodeType="Xaml" />
</controls:CodeViewer.SourceCodes>
</controls:CodeViewer>
</UserControl>