Exemplo n.º 1
0
 /// <summary>
 /// Initializates a new instance of the <code>Rebar</code> class with default settings
 /// </summary>
 public Rebar() : base()
 {
     SetStyle(ControlStyles.UserPaint | ControlStyles.FixedWidth, false);
     SetStyle(ControlStyles.FixedHeight, AutoSize);
     Dock    = DockStyle.Top;
     TabStop = false;
     _Bands  = new RebarBandCollection(this);
 }
Exemplo n.º 2
0
 public ReBar()
 {
     SetStyle(ControlStyles.UserPaint, false);
     TabStop               = false;
     Dock                  = DockStyle.Top;
     bands                 = new RebarBandCollection(this);
     bands.Changed        += new EventHandler(Bands_Changed);
     addPlaceHolderToolBar = true;
 }
Exemplo n.º 3
0
 public Rebar()
     : base()
 {
     this.SetStyle(ControlStyles.UserPaint, false);
     this.bandsCollection = new RebarBandCollection(this);
 }