■ DockLayoutManager 클래스에서 자동 숨김 패널을 생성하는 방법을 보여준다.
▶ MainWindow.xaml
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 52 53 54 55 56 57 58 59 60 |
<Window x:Class="TestProject.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:dxc="http://schemas.devexpress.com/winfx/2008/xaml/core" xmlns:dxd="http://schemas.devexpress.com/winfx/2008/xaml/docking" Width="800" Height="600" Title="자동 숨김 패널 생성하기" FontFamily="나눔고딕코딩" FontSize="16"> <Grid> <dxd:DockLayoutManager x:Name="dockLayoutManager" dxc:ThemeManager.ThemeName="Office2007Blue"> <dxd:LayoutGroup x:Name="rootLayoutGroup" Orientation="Horizontal"> <dxd:DocumentGroup x:Name="documentGroup"> <dxd:DocumentPanel x:Name="documentPanel" Caption="Document"> <RichTextBox /> </dxd:DocumentPanel> </dxd:DocumentGroup> </dxd:LayoutGroup> <dxd:DockLayoutManager.AutoHideGroups> <dxd:AutoHideGroup DockType="Right"> <dxd:LayoutPanel x:Name="propertyLayoutPanel" ItemWidth="150" Caption="Property"> <RichTextBox /> </dxd:LayoutPanel> <dxd:LayoutPanel x:Name="messageLayoutPanel" ItemWidth="150" Caption="Message"> <RichTextBox /> </dxd:LayoutPanel> </dxd:AutoHideGroup> <dxd:AutoHideGroup DockType="Left"> <dxd:LayoutPanel x:Name="errorLayoutPanel" ItemWidth="150" Caption="Error"> <RichTextBox /> </dxd:LayoutPanel> <dxd:LayoutPanel x:Name="warningLayoutPanel" ItemWidth="150" Caption="Warning"> <RichTextBox /> </dxd:LayoutPanel> </dxd:AutoHideGroup> <dxd:AutoHideGroup DockType="Left"> <dxd:LayoutPanel x:Name="findResultLayoutPanel" ItemWidth="150" Caption="Find Result"> <RichTextBox /> </dxd:LayoutPanel> </dxd:AutoHideGroup> </dxd:DockLayoutManager.AutoHideGroups> </dxd:DockLayoutManager> </Grid> </Window> |
▶ MainWindow.xaml.cs
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 |
using System.Windows; namespace TestProject { /// <summary> /// 메인 윈도우 /// </summary> public partial class MainWindow : Window { //////////////////////////////////////////////////////////////////////////////////////////////////// Constructor ////////////////////////////////////////////////////////////////////////////////////////// Public #region 생성자 - MainWindow() /// <summary> /// 생성자 /// </summary> public MainWindow() { InitializeComponent(); } #endregion } } |