/// <summary> /// Constructor of the StatusBarEx control. /// </summary> public StatusBarEx() { Text = GetType().Name; showPanels = false; // don't show different StatusBarPanels initially panels = new StatusBarPanelCollection(this); panels.Clear(); }
public StatusBar() { Name = "StatusBar"; Height = 22; Dock = DockStyle.Bottom; showPanels = false; sizingGrip = true; BackColor = SystemColors.Control; panels = new StatusBarPanelCollection(this); }