■ FrameNavigationService 클래스를 사용해 뷰 간 탐색하는 방법을 보여준다.
▶ 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 |
<Window x:Class="TestProject.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:dxm="http://schemas.devexpress.com/winfx/2008/xaml/mvvm" xmlns:dxwui="http://schemas.devexpress.com/winfx/2008/xaml/windowsui" xmlns:dxwuin="http://schemas.devexpress.com/winfx/2008/xaml/windowsui/navigation" xmlns:local="clr-namespace:TestProject" Width="800" Height="600" Title="FrameNavigationService를 통해 뷰 간 탐색하기" FontFamily="나눔고딕코딩" FontSize="16"> <Window.DataContext> <local:MainViewModel /> </Window.DataContext> <dxm:Interaction.Triggers> <dxm:EventToCommand EventName="Loaded" Command="{Binding WindowLoadedCommand}" /> </dxm:Interaction.Triggers> <dxm:Interaction.Behaviors> <dxwuin:FrameNavigationService Frame="{Binding ElementName=frame}" /> </dxm:Interaction.Behaviors> <Grid> <dxwui:NavigationFrame x:Name="frame" /> </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 } } |