-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWindow1.xaml
More file actions
51 lines (51 loc) · 2.42 KB
/
Window1.xaml
File metadata and controls
51 lines (51 loc) · 2.42 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
43
44
45
46
47
48
49
50
51
<Window
x:Class="CreateLayoutGroups.Window1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:dxcore="http://schemas.devexpress.com/winfx/2008/xaml/core"
xmlns:dxdo="http://schemas.devexpress.com/winfx/2008/xaml/docking"
Title="Window1"
Width="720"
Height="300">
<Grid>
<dxdo:DockLayoutManager
Name="dockManager1"
Margin="12"
dxcore:ThemeManager.ThemeName="Office2019Colorful">
<dxdo:LayoutGroup x:Name="RootGroup" Orientation="Horizontal">
<dxdo:LayoutGroup
x:Name="LayoutGroup1"
ItemWidth="3*"
Orientation="Vertical">
<dxdo:LayoutGroup
x:Name="LayoutGroup2"
ItemHeight="1.5*"
Orientation="Horizontal">
<dxdo:LayoutPanel x:Name="paneToolbox" Caption="Toolbox" />
<dxdo:LayoutPanel x:Name="paneFindResults" Caption="Find Results" />
<dxdo:DocumentGroup x:Name="documentGroup1">
<dxdo:DocumentPanel Caption="Document 1">
<RichTextBox />
</dxdo:DocumentPanel>
<dxdo:DocumentPanel Caption="Document 2">
<RichTextBox />
</dxdo:DocumentPanel>
</dxdo:DocumentGroup>
</dxdo:LayoutGroup>
<dxdo:TabbedGroup Padding="12">
<dxdo:LayoutPanel x:Name="paneErrorList" Caption="Error List" />
<!--...-->
<dxdo:LayoutPanel x:Name="paneOutput" Caption="Output" />
</dxdo:TabbedGroup>
</dxdo:LayoutGroup>
<dxdo:LayoutGroup x:Name="LayoutGroup3" Orientation="Vertical">
<dxdo:LayoutPanel
x:Name="paneSolutionExplorer"
Caption="Solution Explorer"
ItemHeight="100" />
<dxdo:LayoutPanel x:Name="paneProperties" Caption="Properties" />
</dxdo:LayoutGroup>
</dxdo:LayoutGroup>
</dxdo:DockLayoutManager>
</Grid>
</Window>