첨부 실행 코드는 나눔고딕코딩 폰트를 사용합니다.
728x90
반응형
728x170

▶ MainViewModel.cs

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows.Input;

using DevExpress.Xpf.Mvvm;

namespace HowToManageDocumentsViaWindowedDocumentUIService
{
    /// <summary>
    /// 메인 뷰 모델
    /// </summary>
    public class MainViewModel : ViewModelBase
    {
        //////////////////////////////////////////////////////////////////////////////////////////////////// Property
        ////////////////////////////////////////////////////////////////////////////////////////// Public

        #region Show Document Window 명령 - ShowDocumentWindowCommand

        /// <summary>
        /// Show Document Window 명령
        /// </summary>
        public ICommand ShowDocumentWindowCommand { get; private set; }

        #endregion

        ////////////////////////////////////////////////////////////////////////////////////////// Private
        
        #region 문서 관리자 서비스 - DocumentManagerService

        /// <summary>
        /// 문서 관리자 서비스
        /// </summary>
        private IDocumentManagerService DocumentManagerService
        {
            get
            {
                return ServiceContainer.GetService<IDocumentManagerService>();
            }
        }

        #endregion

        //////////////////////////////////////////////////////////////////////////////////////////////////// Constructor
        ////////////////////////////////////////////////////////////////////////////////////////// Public

        #region 생성자 - MainViewModel()

        /// <summary>
        /// 생성자
        /// </summary>
        public MainViewModel()
        {
            ShowDocumentWindowCommand = new DelegateCommand<string>(OnShowDocumentWindowCommandExecute);
        }

        #endregion

        //////////////////////////////////////////////////////////////////////////////////////////////////// Method
        ////////////////////////////////////////////////////////////////////////////////////////// Private

        #region Show Document Window 명령 실행시 처리하기 - OnShowDocumentWindowCommandExecute(documentName)

        /// <summary>
        /// Show Document Window 명령 실행시 처리하기
        /// </summary>
        /// <param name="documentName">문서명</param>
        private void OnShowDocumentWindowCommandExecute(string documentName)
        {
            IDocument document = DocumentManagerService.CreateDocument(documentName, null, this);

            document.Title          = documentName;
            document.DestroyOnClose = true;

            document.Show();
        }

        #endregion
    }
}

 

728x90

 

▶ MainView.xaml

<UserControl
    x:Class="HowToManageDocumentsViaWindowedDocumentUIService.MainView"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:local="clr-namespace:HowToManageDocumentsViaWindowedDocumentUIService">
    <UserControl.DataContext>
        <local:MainViewModel />
    </UserControl.DataContext>
    <Grid>
        <StackPanel Orientation="Horizontal">
            <Button
                Margin="10"
                Padding="5"
                FontSize="16"
                Command="{Binding ShowDocumentWindowCommand}"
                CommandParameter="Document1View"
                Content="Show Document1 Window" />
            <Button
                Margin="10"
                Padding="5"
                FontSize="16"
                Command="{Binding ShowDocumentWindowCommand}"
                CommandParameter="Document2View"
                Content="Show Document3 Window" />
        </StackPanel>
    </Grid>
</UserControl>

 

300x250

 

▶ MainWindow.xaml

<Window
    x:Class="HowToManageDocumentsViaWindowedDocumentUIService.MainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:dx="http://schemas.devexpress.com/winfx/2008/xaml/core"
    xmlns:dxm="http://schemas.devexpress.com/winfx/2008/xaml/mvvm"
    xmlns:local="clr-namespace:HowToManageDocumentsViaWindowedDocumentUIService"
    Title="HowToManageDocumentsViaWindowedDocumentUIService"
    Width="500"
    Height="300">
    <Grid>
        <local:MainView
            HorizontalAlignment="Center"
            VerticalAlignment="Center">
            <dxm:Interaction.Behaviors>
                <dx:WindowedDocumentUIService>
                    <dx:HowToManageDocumentsViaWindowedDocumentUIService.WindowStyle>
                        <Style TargetType="Window">
                            <Setter Property="Width"  Value="400" />
                            <Setter Property="Height" Value="300" />
                        </Style>
                    </dx:HowToManageDocumentsViaWindowedDocumentUIService.WindowStyle>
                </dx:WindowedDocumentUIService>
            </dxm:Interaction.Behaviors>
        </local:MainView>
    </Grid>
</Window>

 

728x90
반응형
그리드형(광고전용)
Posted by icodebroker

댓글을 달아 주세요