■ Shape 클래스를 사용해 커스텀 파일 슬라이스(Pie Slice)를 만드는 방법을 보여준다.
▶ 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 |
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 //////////////////////////////////////////////////////////////////////////////////////////////////// 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 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="Shape 클래스 : 커스텀 파일 슬라이스(Pie Slice) 사용하기" FontFamily="나눔고딕코딩" FontSize="16"> <Grid> <local:PieSlice HorizontalAlignment="Center" VerticalAlignment="Center" Margin="5" Height="300" Width="300" StrokeThickness="3" Stroke="Black" Fill="Gold" StartAngle="0" EndAngle="60" /> </Grid> </Window> |