■ EventManager 클래스의 RegisterClassHandler 정적 메소드를 사용해 특정 라우팅 이벤트에 대한 클래스 처리기를 등록하는 방법을 보여준다.
▶ CustomEditContainer1.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 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 |
using System.Windows; using System.Windows.Controls; using System.Windows.Input; using System.Windows.Media; namespace TestProject { /// <summary> /// 커스텀 편집 컨테이너 1 /// </summary> public class CustomEditContainer1 : ContentControl { //////////////////////////////////////////////////////////////////////////////////////////////////// Event ////////////////////////////////////////////////////////////////////////////////////////// Static //////////////////////////////////////////////////////////////////////////////// Public #region 편집 상태 변경시 이벤트 - EditStateChangedEvent /// <summary> /// 편집 상태 변경시 이벤트 /// </summary> public static readonly RoutedEvent EditStateChangedEvent = EventManager.RegisterRoutedEvent ( "EditStageChanged", RoutingStrategy.Direct, typeof(RoutedPropertyChangedEventArgs<bool>), typeof(CustomEditContainer1) ); #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// DependencyProperty ////////////////////////////////////////////////////////////////////////////////////////// Static //////////////////////////////////////////////////////////////////////////////// Public #region 편집 상태 속성 - EditStateProperty /// <summary> /// 편집 상태 속성 /// </summary> public static readonly DependencyProperty EditStateProperty = DependencyProperty.Register ( "EditState", typeof(bool), typeof(CustomEditContainer1), new PropertyMetadata ( false, new PropertyChangedCallback(EditStatePropertyChangedCallback) ) ); #endregion ////////////////////////////////////////////////////////////////////////////////////////// Instance //////////////////////////////////////////////////////////////////////////////// Public #region 편집 상태 변경시 이벤트 - EditStateChanged /// <summary> /// 편집 상태 변경시 이벤트 /// </summary> public event RoutedEventHandler EditStateChanged { add { AddHandler(EditStateChangedEvent, value); } remove { RemoveHandler(EditStateChangedEvent, value); } } #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Property ////////////////////////////////////////////////////////////////////////////////////////// Public #region 편집 상태 - EditState /// <summary> /// 편집 상태 /// </summary> public bool EditState { get { return (bool)GetValue(EditStateProperty); } set { this.SetValue(EditStateProperty, value); } } #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Constructor ////////////////////////////////////////////////////////////////////////////////////////// Static #region 생성자 - CustomEditContainer1() /// <summary> /// 생성자 /// </summary> static CustomEditContainer1() { EventManager.RegisterClassHandler ( typeof(CustomEditContainer1), PreviewMouseRightButtonDownEvent, new RoutedEventHandler(ContentControl_PreviewMouseRightButtonDown) ); } #endregion ////////////////////////////////////////////////////////////////////////////////////////// Instance //////////////////////////////////////////////////////////////////////////////// Public #region 생성자 - CustomEditContainer1() /// <summary> /// 생성자 /// </summary> public CustomEditContainer1() : base() { } #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Method ////////////////////////////////////////////////////////////////////////////////////////// Static //////////////////////////////////////////////////////////////////////////////// Internal #region 컨텐트 컨트롤 프리뷰 마우스 오른쪽 버튼 DOWN 처리하기 - ContentControl_PreviewMouseRightButtonDown(sender, e) /// <summary> /// 컨텐트 컨트롤 프리뷰 마우스 오른쪽 버튼 DOWN 처리하기 /// </summary> /// <param name="sender">이벤트 발생자</param> /// <param name="e">이벤트 인자</param> internal static void ContentControl_PreviewMouseRightButtonDown(object sender, RoutedEventArgs e) { MessageBox.Show("OnPreviewMouseRightButtonDown 함수 호출전에 호출됩니다."); //e.Handled = true; } #endregion //////////////////////////////////////////////////////////////////////////////// Private #region 편집 상태 속성 변경시 콜백 처리하기 - EditStatePropertyChangedCallback(d, e) /// <summary> /// 편집 상태 속성 변경시 콜백 처리하기 /// </summary> /// <param name="d">의존 객체</param> /// <param name="e">이벤트 인자</param> private static void EditStatePropertyChangedCallback(DependencyObject d, DependencyPropertyChangedEventArgs e) { CustomEditContainer1 container = d as CustomEditContainer1; if(container != null) { RoutedPropertyChangedEventArgs<bool> eventArgs = new RoutedPropertyChangedEventArgs<bool> ( (bool)e.OldValue, (bool)e.NewValue ); eventArgs.RoutedEvent = EditStateChangedEvent; container.RaiseEvent(eventArgs); } } #endregion ////////////////////////////////////////////////////////////////////////////////////////// Instance //////////////////////////////////////////////////////////////////////////////// Protected #region 프리뷰 마우스 오른쪽 버튼 DOWN 처리하기 - OnPreviewMouseRightButtonDown(e) /// <summary> /// 프리뷰 마우스 오른쪽 버튼 DOWN 처리하기 /// </summary> /// <param name="e">이벤트 인자</param> protected override void OnPreviewMouseRightButtonDown(MouseButtonEventArgs e) { CustomEditContainer1 container = GetContainer(e.Source as DependencyObject); if(container != null) { if(container.EditState) { container.EditState = false; } else { container.EditState = true; } } e.Handled = true; base.OnPreviewMouseRightButtonDown(e); } #endregion //////////////////////////////////////////////////////////////////////////////// Private #region 컨테이너 구하기 - GetContainer(d) /// <summary> /// 컨테이너 구하기 /// </summary> /// <param name="d">의존 객체</param> /// <returns>컨테이너</returns> private CustomEditContainer1 GetContainer(DependencyObject d) { if(d == null) { return null; } if(d.GetType() == typeof(CustomEditContainer1)) { return d as CustomEditContainer1; } else { DependencyObject parent = VisualTreeHelper.GetParent(d); if(parent == null) { return null; } else { return GetContainer(parent); } } } #endregion } } |
▶ CustomEditContainer2.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 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 |
using System.Windows; using System.Windows.Controls; using System.Windows.Input; using System.Windows.Media; namespace TestProject { /// <summary> /// 커스텀 편집 컨테이너 2 /// </summary> public class CustomEditContainer2 : ContentControl { //////////////////////////////////////////////////////////////////////////////////////////////////// Event ////////////////////////////////////////////////////////////////////////////////////////// Static //////////////////////////////////////////////////////////////////////////////// Public #region 편집 상태 변경시 이벤트 - EditStateChangedEvent /// <summary> /// 편집 상태 변경시 이벤트 /// </summary> public static readonly RoutedEvent EditStateChangedEvent = CustomEditContainer1.EditStateChangedEvent.AddOwner ( typeof(CustomEditContainer2) ); #endregion ////////////////////////////////////////////////////////////////////////////////////////// Instance //////////////////////////////////////////////////////////////////////////////// Public #region 편집 상태 변경시 이벤트 - EditStateChanged /// <summary> /// 편집 상태 변경시 이벤트 /// </summary> public event RoutedEventHandler EditStateChanged { add { AddHandler(EditStateChangedEvent, value); } remove { RemoveHandler(EditStateChangedEvent, value); } } #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// DependencyProperty ////////////////////////////////////////////////////////////////////////////////////////// Static //////////////////////////////////////////////////////////////////////////////// Public #region 편집 상태 속성 - EditStateProperty /// <summary> /// 편집 상태 속성 /// </summary> public static readonly DependencyProperty EditStateProperty = CustomEditContainer1.EditStateProperty.AddOwner ( typeof(CustomEditContainer2), new PropertyMetadata ( false, new PropertyChangedCallback(EditStatePropertyChangedCallback) ) ); #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Property ////////////////////////////////////////////////////////////////////////////////////////// Public #region 편집 상태 - EditState /// <summary> /// 편집 상태 /// </summary> public bool EditState { get { return (bool)GetValue(EditStateProperty); } set { this.SetValue(EditStateProperty, value); } } #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Constructor ////////////////////////////////////////////////////////////////////////////////////////// Static #region 생성자 - CustomEditContainer2() /// <summary> /// 생성자 /// </summary> static CustomEditContainer2() { EventManager.RegisterClassHandler ( typeof(CustomEditContainer2), PreviewMouseRightButtonDownEvent, new RoutedEventHandler(CustomEditContainer1.ContentControl_PreviewMouseRightButtonDown) ); } #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Method ////////////////////////////////////////////////////////////////////////////////////////// Static //////////////////////////////////////////////////////////////////////////////// Private #region 편집 상태 속성 변경시 콜백 처리하기 - EditStatePropertyChangedCallback(d, e) /// <summary> /// 편집 상태 속성 변경시 콜백 처리하기 /// </summary> /// <param name="d">의존 객체</param> /// <param name="e">이벤트 인자</param> private static void EditStatePropertyChangedCallback(DependencyObject d, DependencyPropertyChangedEventArgs e) { CustomEditContainer2 container = d as CustomEditContainer2; if(container != null) { RoutedPropertyChangedEventArgs<bool> eventArgs = new RoutedPropertyChangedEventArgs<bool> ( (bool)e.OldValue, (bool)e.NewValue ); eventArgs.RoutedEvent = EditStateChangedEvent; container.RaiseEvent(eventArgs); } } #endregion ////////////////////////////////////////////////////////////////////////////////////////// Instance //////////////////////////////////////////////////////////////////////////////// Protected #region 프리뷰 마우스 오른쪽 버튼 DOWN 처리하기 - OnPreviewMouseRightButtonDown(e) /// <summary> /// 프리뷰 마우스 오른쪽 버튼 DOWN 처리하기 /// </summary> /// <param name="e">이벤트 인자</param> protected override void OnPreviewMouseRightButtonDown(MouseButtonEventArgs e) { CustomEditContainer2 container = GetContainer(e.Source as DependencyObject); if(container != null) { if(container.EditState) { container.EditState = false; } else { container.EditState = true; } } e.Handled = true; base.OnPreviewMouseLeftButtonDown(e); } #endregion //////////////////////////////////////////////////////////////////////////////// Private #region 컨테이너 구하기 - GetContainer(d) /// <summary> /// 컨테이너 구하기 /// </summary> /// <param name="d">의존 객체</param> /// <returns>컨테이너</returns> private CustomEditContainer2 GetContainer(DependencyObject d) { if(d == null) { return null; } if(d.GetType() == typeof(CustomEditContainer2)) { return d as CustomEditContainer2; } else { DependencyObject parent = VisualTreeHelper.GetParent(d); if(parent == null) { return null; } else { return GetContainer(parent); } } } #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 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 |
<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="MainWindow" FontFamily="나눔고딕코딩" FontSize="16"> <Grid> <StackPanel HorizontalAlignment="Center" VerticalAlignment="Center"> <local:CustomEditContainer1 x:Name="customEditContainer1" Margin="10"> <Border BorderBrush="Black" BorderThickness="10" Background="Gold"> <Ellipse Width="100" Height="100" Fill="RoyalBlue" /> </Border> </local:CustomEditContainer1> <local:CustomEditContainer2 x:Name="customEditContainer2" Margin="10"> <Border BorderBrush="Black" BorderThickness="10" Background="RoyalBlue"> <Ellipse Width="100" Height="100" Fill="Gold" /> </Border> </local:CustomEditContainer2> </StackPanel> </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 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 |
using System.Windows; namespace TestProject { /// <summary> /// 메인 윈도우 /// </summary> public partial class MainWindow : Window { //////////////////////////////////////////////////////////////////////////////////////////////////// Constructor ////////////////////////////////////////////////////////////////////////////////////////// Public #region 생성자 - MainWindow() /// <summary> /// 생성자 /// </summary> public MainWindow() { InitializeComponent(); this.customEditContainer1.EditStateChanged += customEditContainer1_EditStateChanged; this.customEditContainer2.EditStateChanged += customEditContainer2_EditStateChanged; } #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Method ////////////////////////////////////////////////////////////////////////////////////////// Private #region 커스텀 편집 컨테이너 1 편집 상태 변경시 처리하기 - customEditContainer1_EditStateChanged(sender, e) /// <summary> /// 커스텀 편집 컨테이너 1 편집 상태 변경시 처리하기 /// </summary> /// <param name="sender">이벤트 발생자</param> /// <param name="e">이벤트 인자</param> private void customEditContainer1_EditStateChanged(object sender, RoutedEventArgs e) { MessageBox.Show("customEditContainer1 객체의 EditStateChanged 이벤트가 발생했습니다."); } #endregion #region 커스텀 편집 컨테이너 2 편집 상태 변경시 처리하기 - customEditContainer2_EditStateChanged(sender, e) /// <summary> /// 커스텀 편집 컨테이너 2 편집 상태 변경시 처리하기 /// </summary> /// <param name="sender">이벤트 발생자</param> /// <param name="e">이벤트 인자</param> private void customEditContainer2_EditStateChanged(object sender, RoutedEventArgs e) { MessageBox.Show("customEditContainer2 객체의 EditStateChanged 이벤트가 발생했습니다."); } #endregion } } |