Exemplo n.º 1
0
 public DockItem(string name, string longName, DockItemBehavior behavior) : this()
 {
     Name     = name;
     LongName = longName;
     Behavior = behavior;
     ((Label)TabLabel).Markup = longName;
 }
Exemplo n.º 2
0
 public DockItem(string name, string longName, DockItemBehavior behavior)
     : this()
 {
     Name = name;
     LongName = longName;
     Behavior = behavior;
     ((Label) TabLabel).Markup = longName;
 }
Exemplo n.º 3
0
 public DockItem(string name, string longName, string stockid,
                 DockItemBehavior behavior) : this(name, longName, behavior)
 {
     StockId = stockid;
 }
Exemplo n.º 4
0
        public DockItem(string name, string longName, string stockid,
				 DockItemBehavior behavior)
            : this(name, longName, behavior)
        {
            StockId = stockid;
        }