You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
563 B
22 lines
563 B
using System.Windows;
|
|
using System.Windows.Controls;
|
|
|
|
namespace HMIControl
|
|
{
|
|
public class HVDial : Dial
|
|
{
|
|
public static readonly DependencyProperty OrientationProperty = DependencyProperty.Register("Orientation", typeof(Orientation), typeof(Dial));
|
|
|
|
public Orientation Orientation
|
|
{
|
|
get
|
|
{
|
|
return (Orientation)base.GetValue(OrientationProperty);
|
|
}
|
|
set
|
|
{
|
|
base.SetValue(OrientationProperty, value);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|