123456789101112131415161718192021 |
- namespace System.Windows.Forms
- {
- public class StatusStrip : ToolStrip
- {
- public bool SizingGrip { get; set; }
- internal protected override void ApplyStyle(ToolStripProfessionalRenderer r)
- {
- control.Resources["ToolBarHorizontalBackground"] = r.StatusBarBackground;
- }
- public StatusStrip()
- {
- GripStyle = ToolStripGripStyle.Hidden;
- Dock = DockStyle.Bottom;
- Padding = new Padding(6, 0, 6, 0);
- AutoSize = false;
- control.BorderThickness = new Thickness(0);
- }
- }
- }
|