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