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