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
527 B
21 lines
527 B
using System.Windows;
|
|
|
|
namespace HMIControl
|
|
{
|
|
|
|
public class PackingBench : HMIControlBase
|
|
{
|
|
static PackingBench()
|
|
{
|
|
DefaultStyleKeyProperty.OverrideMetadata(typeof(PackingBench), new FrameworkPropertyMetadata(typeof(PackingBench)));
|
|
}
|
|
|
|
public override LinkPosition[] GetLinkPositions()
|
|
{
|
|
return new LinkPosition[1]
|
|
{
|
|
new LinkPosition(new Point(0.8,0),ConnectOrientation.Top),
|
|
};
|
|
}
|
|
}
|
|
}
|
|
|