■ DependencyPropertyDescriptor 클래스의 FromProperty 정적 메소드를 사용해 디자인 모드 여부를 구하는 방법을 보여준다.
▶ UIHelper.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 |
using System.ComponentModel; using System.Windows; namespace TestProject { /// <summary> /// UI 헬퍼 /// </summary> public class UIHelper { //////////////////////////////////////////////////////////////////////////////////////////////////// Field ////////////////////////////////////////////////////////////////////////////////////////// Static //////////////////////////////////////////////////////////////////////////////// Private #region Field /// <summary> /// 디자인 모드 여부 /// </summary> private static bool? _isDesignMode; #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Property ////////////////////////////////////////////////////////////////////////////////////////// Static //////////////////////////////////////////////////////////////////////////////// Public #region 디자인 모드 여부 - IsDesignMode /// <summary> /// 디자인 모드 여부 /// </summary> public static bool IsDesignMode { get { if(!_isDesignMode.HasValue) { DependencyProperty property = DesignerProperties.IsInDesignModeProperty; _isDesignMode = (bool)DependencyPropertyDescriptor.FromProperty ( property, typeof(FrameworkElement) ).Metadata.DefaultValue; } return _isDesignMode.Value; } } #endregion } } |
▶ 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 28 29 30 31 32 |
using System.Windows; namespace TestProject { /// <summary> /// 메인 윈도우 /// </summary> public partial class MainWindow : Window { //////////////////////////////////////////////////////////////////////////////////////////////////// Constructor ////////////////////////////////////////////////////////////////////////////////////////// Public #region 생성자 - MainWindow() /// <summary> /// 생성자 /// </summary> public MainWindow() { InitializeComponent(); if(UIHelper.IsDesignMode) { // 디자인 모드인 경우 작업한다. } } #endregion } } |