■ DependencyProperty 클래스의 OverrideMetadata 메소드를 사용해 표준 의존 속성 디폴트 값을 설정하는 방법을 보여준다.
▶ PieSlice.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; using System.Windows; using System.Windows.Media; using System.Windows.Shapes; namespace TestProject { /// <summary> /// 파이 슬라이스 /// </summary> public class PieSlice : Shape { //////////////////////////////////////////////////////////////////////////////////////////////////// Dependency Property ////////////////////////////////////////////////////////////////////////////////////////// Public #region 시작 각도 속성 - StartAngleProperty /// <summary> /// 시작 각도 속성 /// </summary> public static readonly DependencyProperty StartAngleProperty = DependencyProperty.Register ( "StartAngle", typeof(double), typeof(PieSlice), new FrameworkPropertyMetadata ( 0.0, FrameworkPropertyMetadataOptions.AffectsRender, null, new CoerceValueCallback(AnglePropertyCoerceValueCallback) ) ); #endregion #region 종료 각도 속성 - EndAngleProperty /// <summary> /// 종료 각도 속성 /// </summary> public static readonly DependencyProperty EndAngleProperty = DependencyProperty.Register ( "EndAngle", typeof(double), typeof(PieSlice), new FrameworkPropertyMetadata ( 90.0, FrameworkPropertyMetadataOptions.AffectsRender, null, new CoerceValueCallback(AnglePropertyCoerceValueCallback) ) ); #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Property ////////////////////////////////////////////////////////////////////////////////////////// Public #region 시작 각도 - StartAngle /// <summary> /// 시작 각도 /// </summary> public double StartAngle { get { return (double)GetValue(StartAngleProperty); } set { SetValue(StartAngleProperty, value); } } #endregion #region 종료 각도 - EndAngle /// <summary> /// 종료 각도 /// </summary> public double EndAngle { get { return (double)GetValue(EndAngleProperty); } set { SetValue(EndAngleProperty, value); } } #endregion ////////////////////////////////////////////////////////////////////////////////////////// Protected #region 정의 지오메트리 - DefiningGeometry /// <summary> /// 정의 지오메트리 /// </summary> protected override Geometry DefiningGeometry { get { double maximumWidth = Math.Max(0.0, RenderSize.Width - StrokeThickness); double maximumHeight = Math.Max(0.0, RenderSize.Height - StrokeThickness); double xStart = maximumWidth / 2.0 * Math.Cos(StartAngle * Math.PI / 180.0); double yStart = maximumHeight / 2.0 * Math.Sin(StartAngle * Math.PI / 180.0); double xEnd = maximumWidth / 2.0 * Math.Cos(EndAngle * Math.PI / 180.0); double yEnd = maximumHeight / 2.0 * Math.Sin(EndAngle * Math.PI / 180.0); StreamGeometry geometry = new StreamGeometry(); using(StreamGeometryContext context = geometry.Open()) { context.BeginFigure ( new Point ( (RenderSize.Width / 2.0) + xStart, (RenderSize.Height / 2.0) - yStart ), true, true ); context.ArcTo ( new Point ( (RenderSize.Width / 2.0) + xEnd, (RenderSize.Height / 2.0) - yEnd ), new Size ( maximumWidth / 2.0, maximumHeight / 2.0 ), 0.0, (EndAngle - StartAngle) > 180, SweepDirection.Counterclockwise, true, false ); context.LineTo ( new Point ( (RenderSize.Width / 2.0), (RenderSize.Height / 2.0) ), true, false ); } return geometry; } } #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Constructor ////////////////////////////////////////////////////////////////////////////////////////// Static #region 생성자 - PieSlice() /// <summary> /// 생성자 /// </summary> static PieSlice() { Brush brush = new SolidColorBrush(Color.FromArgb(255, 6, 176, 37)); brush.Freeze(); StrokeProperty.OverrideMetadata(typeof(PieSlice), new FrameworkPropertyMetadata(brush)); FillProperty.OverrideMetadata(typeof(PieSlice), new FrameworkPropertyMetadata(brush)); } #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Method ////////////////////////////////////////////////////////////////////////////////////////// Static //////////////////////////////////////////////////////////////////////////////// Private #region 각도 속성 값 강제시 콜백 처리하기 - AnglePropertyCoerceValueCallback(d, value) /// <summary> /// 각도 속성 값 강제시 콜백 처리하기 /// </summary> /// <param name="d">의존 객체</param> /// <param name="value">값</param> /// <returns>처리 결과</returns> private static object AnglePropertyCoerceValueCallback(DependencyObject d, object value) { double angle = (double)value; angle = Math.Min(angle, 359.9); angle = Math.Max(angle, 0.0 ); return angle; } #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 |
<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="DependencyProperty 클래스 : OverrideMetadata 메소드를 사용해 표준 의존 속성 디폴트 값 설정하기" FontFamily="나눔고딕코딩" FontSize="16"> <Grid> <local:PieSlice HorizontalAlignment="Center" VerticalAlignment="Center" Margin="5" Height="300" Width="300" StrokeThickness="3" StartAngle="0" EndAngle="60" /> </Grid> </Window> |