mirror of
https://github.com/VitalickS/BrightSharp.Toolkit.git
synced 2026-03-21 10:21:16 +00:00
104 lines
3.2 KiB
C#
104 lines
3.2 KiB
C#
|
|
using System;
|
|||
|
|
using System.Windows.Controls;
|
|||
|
|
using System.Windows.Documents;
|
|||
|
|
using System.Windows;
|
|||
|
|
using System.Windows.Media;
|
|||
|
|
using System.Windows.Media.Animation;
|
|||
|
|
using System.ComponentModel;
|
|||
|
|
|
|||
|
|
namespace BrightSharp.Diagrams
|
|||
|
|
{
|
|||
|
|
[ToolboxItem(false)]
|
|||
|
|
public class DesignerItemDecorator : Control
|
|||
|
|
{
|
|||
|
|
private Adorner adorner;
|
|||
|
|
|
|||
|
|
public bool ShowDecorator
|
|||
|
|
{
|
|||
|
|
get { return (bool)GetValue(ShowDecoratorProperty); }
|
|||
|
|
set { SetValue(ShowDecoratorProperty, value); }
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public static readonly DependencyProperty ShowDecoratorProperty =
|
|||
|
|
DependencyProperty.Register("ShowDecorator", typeof(bool), typeof(DesignerItemDecorator),
|
|||
|
|
new FrameworkPropertyMetadata(false, new PropertyChangedCallback(ShowDecoratorProperty_Changed)));
|
|||
|
|
|
|||
|
|
public DesignerItemDecorator()
|
|||
|
|
{
|
|||
|
|
Unloaded += new RoutedEventHandler(DesignerItemDecorator_Unloaded);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
private void HideAdorner()
|
|||
|
|
{
|
|||
|
|
if (adorner != null)
|
|||
|
|
{
|
|||
|
|
adorner.Visibility = Visibility.Hidden;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
private void ShowAdorner()
|
|||
|
|
{
|
|||
|
|
if (adorner == null)
|
|||
|
|
{
|
|||
|
|
AdornerLayer adornerLayer = AdornerLayer.GetAdornerLayer(this);
|
|||
|
|
|
|||
|
|
if (adornerLayer != null)
|
|||
|
|
{
|
|||
|
|
ContentControl designerItem = DataContext as ContentControl;
|
|||
|
|
Canvas canvas = VisualTreeHelper.GetParent(designerItem) as Canvas;
|
|||
|
|
adorner = new ResizeRotateAdorner(designerItem);
|
|||
|
|
adornerLayer.Add(adorner);
|
|||
|
|
|
|||
|
|
if (ShowDecorator)
|
|||
|
|
{
|
|||
|
|
adorner.Visibility = Visibility.Visible;
|
|||
|
|
|
|||
|
|
var anim = new DoubleAnimation(0, 1, TimeSpan.FromSeconds(.2));
|
|||
|
|
adorner.BeginAnimation(OpacityProperty, anim);
|
|||
|
|
}
|
|||
|
|
else
|
|||
|
|
{
|
|||
|
|
adorner.Visibility = Visibility.Hidden;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
else
|
|||
|
|
{
|
|||
|
|
adorner.Visibility = Visibility.Visible;
|
|||
|
|
|
|||
|
|
var anim = new DoubleAnimation(0, 1, TimeSpan.FromSeconds(.2));
|
|||
|
|
adorner.BeginAnimation(OpacityProperty, anim);
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
private void DesignerItemDecorator_Unloaded(object sender, RoutedEventArgs e)
|
|||
|
|
{
|
|||
|
|
if (adorner != null)
|
|||
|
|
{
|
|||
|
|
AdornerLayer adornerLayer = AdornerLayer.GetAdornerLayer(this);
|
|||
|
|
if (adornerLayer != null)
|
|||
|
|
{
|
|||
|
|
adornerLayer.Remove(adorner);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
adorner = null;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
private static void ShowDecoratorProperty_Changed(DependencyObject d, DependencyPropertyChangedEventArgs e)
|
|||
|
|
{
|
|||
|
|
DesignerItemDecorator decorator = (DesignerItemDecorator)d;
|
|||
|
|
bool showDecorator = (bool)e.NewValue;
|
|||
|
|
|
|||
|
|
if (showDecorator)
|
|||
|
|
{
|
|||
|
|
decorator.ShowAdorner();
|
|||
|
|
}
|
|||
|
|
else
|
|||
|
|
{
|
|||
|
|
decorator.HideAdorner();
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|