mirror of
https://github.com/VitalickS/BrightSharp.Toolkit.git
synced 2026-03-21 18:31:17 +00:00
16 lines
418 B
C#
16 lines
418 B
C#
|
|
using System.ComponentModel;
|
|||
|
|
using System.Windows;
|
|||
|
|
using System.Windows.Controls;
|
|||
|
|
|
|||
|
|
namespace BrightSharp.Diagrams
|
|||
|
|
{
|
|||
|
|
[ToolboxItem(false)]
|
|||
|
|
public class ResizeRotateChrome : Control
|
|||
|
|
{
|
|||
|
|
static ResizeRotateChrome()
|
|||
|
|
{
|
|||
|
|
FrameworkElement.DefaultStyleKeyProperty.OverrideMetadata(typeof(ResizeRotateChrome), new FrameworkPropertyMetadata(typeof(ResizeRotateChrome)));
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|