C# SCADA
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.

21 lines
597 B

using System.Windows;
namespace HMIControl
{
public class Magnetism : HMIControlBase
{
static Magnetism()
{
DefaultStyleKeyProperty.OverrideMetadata(typeof(Magnetism), new FrameworkPropertyMetadata(typeof(Magnetism)));
}
public override LinkPosition[] GetLinkPositions()
{
return new LinkPosition[2]
{
new LinkPosition(new Point(0.5,0),ConnectOrientation.Top),
new LinkPosition(new Point(0.5,1),ConnectOrientation.Bottom),
};
}
}
}