|
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- using System;
- using System.Windows;
- using System.Windows.Controls;
- using System.Windows.Media;
-
- namespace Common.system
- {
- public class ZJClippingBorder : Border
- {
- private object _oldClip;
-
- protected override void OnRender(DrawingContext dc)
- {
- OnApplyChildClip();
- base.OnRender(dc);
- }
-
- public override UIElement Child
- {
- get => base.Child;
- set
- {
- if (Child != value)
- {
- if (Child != null)
- {
- Child.SetValue(ClipProperty, _oldClip);
- }
-
- if (value != null)
- {
- _oldClip = value.ReadLocalValue(ClipProperty);
- }
- else
- {
- // If we dont set it to null we could leak a Geometry object
- _oldClip = null;
- }
-
- base.Child = value;
- }
- }
- }
-
- protected virtual void OnApplyChildClip()
- {
- UIElement child = Child;
- if (child != null)
- {
- double top = Math.Max(CornerRadius.TopLeft, CornerRadius.TopRight);
- double bottom = Math.Max(CornerRadius.BottomLeft, CornerRadius.BottomRight);
- double max = Math.Max(top, bottom);
- Size size = RenderSize;
- double width = size.Width - (BorderThickness.Left + BorderThickness.Right);
- double height = size.Height - (BorderThickness.Top + BorderThickness.Bottom);
- Geometry result = new RectangleGeometry(new Rect(0, 0, width, height), max, max);
- double halfWidth = width / 2;
- double halfHeight = height / 2;
-
- if (CornerRadius.TopLeft == 0)
- {
- result = new CombinedGeometry(
- GeometryCombineMode.Union,
- result,
- new RectangleGeometry(new Rect(0, 0, halfWidth, halfHeight))
- );
- }
-
- if (CornerRadius.TopRight == 0)
- {
- result = new CombinedGeometry(GeometryCombineMode.Union, result, new RectangleGeometry
- (new Rect(halfWidth, 0, halfWidth, halfHeight)));
- }
-
- if (CornerRadius.BottomLeft == 0)
- {
- result = new CombinedGeometry
- (GeometryCombineMode.Union, result, new RectangleGeometry
- (new Rect(0, halfHeight, halfWidth, halfHeight)));
- }
- if (CornerRadius.BottomRight == 0)
- {
- result = new CombinedGeometry
- (
- GeometryCombineMode.Union,
- result,
- new RectangleGeometry(new Rect(halfWidth, halfHeight, halfWidth, halfHeight))
- );
- }
- child.Clip = result;
- }
- }
- }
- }
|