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 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288
|
public class Bubble : ContentControl { static Bubble() => DefaultStyleKeyProperty.OverrideMetadata(typeof(Bubble), new FrameworkPropertyMetadata(typeof(Bubble)));
public Bubble() { this.SizeChanged += Bubble_SizeChanged; }
private void Bubble_SizeChanged(object sender, SizeChangedEventArgs e) { SetBubbleCallback(this, new DependencyPropertyChangedEventArgs()); }
public double BubbleThickness { get { return (double)GetValue(BubbleThicknessProperty); } set { SetValue(BubbleThicknessProperty, value); } } public static readonly DependencyProperty BubbleThicknessProperty = DependencyProperty.Register("BubbleThickness", typeof(double), typeof(Bubble), new PropertyMetadata(default(double), SetBubbleCallback));
public Brush BubbleBrush { get { return (Brush)GetValue(BubbleBrushProperty); } set { SetValue(BubbleBrushProperty, value); } } public static readonly DependencyProperty BubbleBrushProperty = DependencyProperty.Register("BubbleBrush", typeof(Brush), typeof(Bubble), new PropertyMetadata(default(Brush)));
public Brush BubbleBackground { get { return (Brush)GetValue(BubbleBackgroundProperty); } set { SetValue(BubbleBackgroundProperty, value); } } public static readonly DependencyProperty BubbleBackgroundProperty = DependencyProperty.Register("BubbleBackground", typeof(Brush), typeof(Bubble), new PropertyMetadata(default(Brush)));
public double BubbleOpacity { get { return (double)GetValue(BubbleOpacityProperty); } set { SetValue(BubbleOpacityProperty, value); } } public static readonly DependencyProperty BubbleOpacityProperty = DependencyProperty.Register("BubbleOpacity", typeof(double), typeof(Bubble), new PropertyMetadata(1d));
public double CornerRadius { get { return (double)GetValue(CornerRadiusProperty); } set { SetValue(CornerRadiusProperty, value); } } public static readonly DependencyProperty CornerRadiusProperty = DependencyProperty.Register("CornerRadius", typeof(double), typeof(Bubble), new PropertyMetadata(default(double)));
public BubbleAlignment PointingDirection { get { return (BubbleAlignment)GetValue(PointingDirectionProperty); } set { SetValue(PointingDirectionProperty, value); } } public static readonly DependencyProperty PointingDirectionProperty = DependencyProperty.Register("PointingDirection", typeof(BubbleAlignment), typeof(Bubble), new PropertyMetadata(BubbleAlignment.Bottom, SetBubbleCallback));
public double TriangleSize { get { return (double)GetValue(TriangleSizeProperty); } set { SetValue(TriangleSizeProperty, value); } } public static readonly DependencyProperty TriangleSizeProperty = DependencyProperty.Register("TriangleSize", typeof(double), typeof(Bubble), new PropertyMetadata(10d, SetBubbleCallback));
#region 不对外暴露的依赖属性 public Rect RectangleRect { get { return (Rect)GetValue(RectangleRectProperty); } private set { SetValue(RectangleRectProperty, value); } } public static readonly DependencyProperty RectangleRectProperty = DependencyProperty.Register("RectangleRect", typeof(Rect), typeof(Bubble), new PropertyMetadata(default(Rect)));
public double TriangleAngle { get { return (double)GetValue(TriangleAngleProperty); } private set { SetValue(TriangleAngleProperty, value); } } public static readonly DependencyProperty TriangleAngleProperty = DependencyProperty.Register("TriangleAngle", typeof(double), typeof(Bubble), new PropertyMetadata(default(double)));
public double TriangleX { get { return (double)GetValue(TriangleXProperty); } private set { SetValue(TriangleXProperty, value); } } public static readonly DependencyProperty TriangleXProperty = DependencyProperty.Register("TriangleX", typeof(double), typeof(Bubble), new PropertyMetadata(default(double)));
public double TriangleY { get { return (double)GetValue(TriangleYProperty); } private set { SetValue(TriangleYProperty, value); } } public static readonly DependencyProperty TriangleYProperty = DependencyProperty.Register("TriangleY", typeof(double), typeof(Bubble), new PropertyMetadata(default(double)));
public HorizontalAlignment ContentHorizontal { get { return (HorizontalAlignment)GetValue(ContentHorizontalProperty); } private set { SetValue(ContentHorizontalProperty, value); } } public static readonly DependencyProperty ContentHorizontalProperty = DependencyProperty.Register("ContentHorizontal", typeof(HorizontalAlignment), typeof(Bubble), new PropertyMetadata(default(HorizontalAlignment)));
public VerticalAlignment ContentVertical { get { return (VerticalAlignment)GetValue(ContentVerticalProperty); } private set { SetValue(ContentVerticalProperty, value); } } public static readonly DependencyProperty ContentVerticalProperty = DependencyProperty.Register("ContentVertical", typeof(VerticalAlignment), typeof(Bubble), new PropertyMetadata(default(VerticalAlignment)));
public double ContentWidth { get { return (double)GetValue(ContentWidthProperty); } private set { SetValue(ContentWidthProperty, value); } } public static readonly DependencyProperty ContentWidthProperty = DependencyProperty.Register("ContentWidth", typeof(double), typeof(Bubble), new PropertyMetadata(default(double)));
public double ContentHeight { get { return (double)GetValue(ContentHeightProperty); } private set { SetValue(ContentHeightProperty, value); } } public static readonly DependencyProperty ContentHeightProperty = DependencyProperty.Register("ContentHeight", typeof(double), typeof(Bubble), new PropertyMetadata(default(double))); #endregion
private static void SetBubbleCallback(DependencyObject d, DependencyPropertyChangedEventArgs e) { if (d is Bubble bubble) { var vTriangleWidth = 32; var vTriangleHeight = 25;
switch (bubble.PointingDirection) { case BubbleAlignment.Left: bubble.RectangleRect = new Rect( bubble.BubbleThickness + bubble.TriangleSize, bubble.BubbleThickness, bubble.Width - (bubble.BubbleThickness * 2) - bubble.TriangleSize, bubble.Height - (bubble.BubbleThickness * 2)); bubble.TriangleAngle = 90; bubble.TriangleX = vTriangleHeight + bubble.BubbleThickness; bubble.TriangleY = bubble.Height / 2 - vTriangleWidth / 2; bubble.ContentHorizontal = HorizontalAlignment.Right; bubble.ContentVertical = VerticalAlignment.Stretch; bubble.ContentWidth = bubble.Width - bubble.TriangleSize; bubble.ContentHeight = bubble.Height; break; case BubbleAlignment.Right: bubble.RectangleRect = new Rect( bubble.BubbleThickness, bubble.BubbleThickness, bubble.Width - (bubble.BubbleThickness * 2) - bubble.TriangleSize, bubble.Height - (bubble.BubbleThickness * 2)); bubble.TriangleAngle = -90; bubble.TriangleX = bubble.Width - vTriangleHeight - bubble.BubbleThickness; bubble.TriangleY = bubble.Height / 2 + vTriangleWidth / 2; bubble.ContentHorizontal = HorizontalAlignment.Left; bubble.ContentVertical = VerticalAlignment.Stretch; bubble.ContentWidth = bubble.Width - bubble.TriangleSize; bubble.ContentHeight = bubble.Height; break; case BubbleAlignment.Top: bubble.RectangleRect = new Rect( bubble.BubbleThickness, bubble.TriangleSize + bubble.BubbleThickness, bubble.Width - (bubble.BubbleThickness * 2), bubble.Height - bubble.TriangleSize - (bubble.BubbleThickness * 2)); bubble.ContentHorizontal = HorizontalAlignment.Stretch; bubble.ContentVertical = VerticalAlignment.Bottom; bubble.ContentWidth = bubble.Width; bubble.ContentHeight = bubble.Height - bubble.TriangleSize; bubble.TriangleAngle = 180; bubble.TriangleX = (bubble.Width - vTriangleWidth) / 2 + vTriangleWidth; bubble.TriangleY = vTriangleHeight + bubble.BubbleThickness; break; case BubbleAlignment.Bottom: bubble.RectangleRect = new Rect( bubble.BubbleThickness, bubble.BubbleThickness, bubble.Width - (bubble.BubbleThickness * 2), bubble.Height - bubble.TriangleSize - (bubble.BubbleThickness * 2)); bubble.ContentHorizontal = HorizontalAlignment.Stretch; bubble.ContentVertical = VerticalAlignment.Top; bubble.ContentWidth = bubble.Width; bubble.ContentHeight = bubble.Height - bubble.TriangleSize; bubble.TriangleAngle = 0; bubble.TriangleX = (bubble.Width - vTriangleWidth) / 2; bubble.TriangleY = bubble.Height - vTriangleHeight - bubble.BubbleThickness; break; } } } }
public enum BubbleAlignment { Left, Right, Top, Bottom }
|