Files
BrightSharp.Toolkit/BrightSharp/Diagrams/Adorners/ResizeRotateChrome.cs

16 lines
418 B
C#
Raw Normal View History

2017-02-18 00:15:59 +03:00
using System.ComponentModel;
using System.Windows;
2017-01-09 13:25:52 +03:00
using System.Windows.Controls;
namespace BrightSharp.Diagrams
2017-01-09 13:25:52 +03:00
{
2017-02-18 00:15:59 +03:00
[ToolboxItem(false)]
2017-01-09 13:25:52 +03:00
public class ResizeRotateChrome : Control
{
static ResizeRotateChrome()
{
FrameworkElement.DefaultStyleKeyProperty.OverrideMetadata(typeof(ResizeRotateChrome), new FrameworkPropertyMetadata(typeof(ResizeRotateChrome)));
}
}
}