public DockItem(string name, string longName, DockItemBehavior behavior) : this() { Name = name; LongName = longName; Behavior = behavior; ((Label)TabLabel).Markup = longName; }
public DockItem(string name, string longName, DockItemBehavior behavior) : this() { Name = name; LongName = longName; Behavior = behavior; ((Label) TabLabel).Markup = longName; }
public DockItem(string name, string longName, string stockid, DockItemBehavior behavior) : this(name, longName, behavior) { StockId = stockid; }