[C#/WPF/PRISM] 뷰 모델에서 윈도우 닫기
■ 뷰 모델에서 윈도우를 닫는 방법을 보여준다. ▶ ICloseWindow.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 28 29 30 31 32 33 34 35 |
using System; namespace TestProject { /// <summary> /// 윈도우 닫기 인터페이스 /// </summary> public interface ICloseWindow { //////////////////////////////////////////////////////////////////////////////////////////////////// Property #region 닫기 액션 - CloseAction /// <summary> /// 닫기 액션 /// </summary> Action CloseAction { get; set; } #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Method #region 닫기 가능 여부 구하기 - CanClose() /// <summary> /// 닫기 가능 여부 구하기 /// </summary> /// <returns>닫기 가능 여부</returns> bool CanClose(); #endregion } } |
▶ MainWindowViewModel.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 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 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 |
using System; using Prism.Commands; namespace TestProject { /// <summary> /// 메인 윈도우 뷰 모델 /// </summary> public class MainWindowViewModel : ICloseWindow { //////////////////////////////////////////////////////////////////////////////////////////////////// Field ////////////////////////////////////////////////////////////////////////////////////////// Private #region Field /// <summary> /// 닫기 명령 /// </summary> private DelegateCommand closeComand; #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Property ////////////////////////////////////////////////////////////////////////////////////////// Public #region 닫기 명령 - CloseCommand /// <summary> /// 닫기 명령 /// </summary> public DelegateCommand CloseCommand => this.closeComand ?? (this.closeComand = new DelegateCommand(ProcessCloseCommand)); #endregion #region 닫기 액션 - CloseAction /// <summary> /// 닫기 액션 /// </summary> public Action CloseAction { get; set; } #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Method ////////////////////////////////////////////////////////////////////////////////////////// Public #region 닫기 가능 여부 구하기 - CanClose() /// <summary> /// 닫기 가능 여부 구하기 /// </summary> /// <returns>닫기 가능 여부</returns> public bool CanClose() { return true; } #endregion ////////////////////////////////////////////////////////////////////////////////////////// Private #region 닫기 명령 처리하기 - ProcessCloseCommand() /// <summary> /// 닫기 명령 처리하기 /// </summary> private void ProcessCloseCommand() { CloseAction?.Invoke(); } #endregion } } |
▶ WindowCloser.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 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 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 |
using System.Windows; namespace TestProject { /// <summary> /// 윈도우 종료자 /// </summary> public class WindowCloser { //////////////////////////////////////////////////////////////////////////////////////////////////// Dependency Property ////////////////////////////////////////////////////////////////////////////////////////// Static //////////////////////////////////////////////////////////////////////////////// Public #region 윈도우 닫기 이용 가능 여부 첨부 속성 - EnableWindowClosingProperty /// <summary> /// 윈도우 닫기 이용 가능 여부 속성 /// </summary> public static readonly DependencyProperty EnableWindowClosingProperty = DependencyProperty.RegisterAttached ( "EnableWindowClosing", typeof(bool), typeof(WindowCloser), new PropertyMetadata ( false, EnableWindowClosingPropertyChangedCallback ) ); #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Method ////////////////////////////////////////////////////////////////////////////////////////// Static //////////////////////////////////////////////////////////////////////////////// Public #region 윈도우 닫기 이용 가능 여부 값 구하기 - GetEnableWindowClosing(d) /// <summary> /// 윈도우 닫기 이용 가능 여부 값 구하기 /// </summary> /// <param name="d">의존 객체</param> /// <returns>윈도우 닫기 이용 가능 여부 값</returns> public static bool GetEnableWindowClosing(DependencyObject d) { return (bool)d.GetValue(EnableWindowClosingProperty); } #endregion #region 윈도우 닫기 이용 가능 여부 값 설정하기 - SetEnableWindowClosing(d, value) /// <summary> /// 윈도우 닫기 이용 가능 여부 값 설정하기 /// </summary> /// <param name="d">의존 객체</param> /// <param name="value">윈도우 닫기 이용 가능 여부 값</param> public static void SetEnableWindowClosing(DependencyObject d, bool value) { d.SetValue(EnableWindowClosingProperty, value); } #endregion //////////////////////////////////////////////////////////////////////////////// Private #region 윈도우 닫기 이용 가능 여부 속성 변경시 콜백 처리하기 - EnableWindowClosingPropertyChangedCallback(d, e) /// <summary> /// 윈도우 닫기 이용 가능 여부 속성 변경시 콜백 처리하기 /// </summary> /// <param name="d">의존 객체</param> /// <param name="e">이벤트 인자</param> private static void EnableWindowClosingPropertyChangedCallback(DependencyObject d, DependencyPropertyChangedEventArgs e) { if(d is Window window) { window.Loaded += (s2, e2) => { if(window.DataContext is ICloseWindow vm) { vm.CloseAction += () => { window.Close(); }; window.Closing += (s3, e3) => { e3.Cancel = !vm.CanClose(); }; } }; } } #endregion } } |
▶ 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 |
<Window x:Class="TestProject.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:local="clr-namespace:TestProject" Width="800" Height="600" Title="뷰 모델에서 윈도우 닫기" local:WindowCloser.EnableWindowClosing="True" FontFamily="나눔고딕코딩" FontSize="16"> <Window.DataContext> <local:MainWindowViewModel /> </Window.DataContext> <Grid> <Button HorizontalAlignment="Center" VerticalAlignment="Center" Width="100" Height="30" Command="{Binding CloseCommand}" Content="닫기" /> </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 } } |