StatusStrip.cs 599 B

123456789101112131415161718192021
  1. namespace System.Windows.Forms
  2. {
  3. public class StatusStrip : ToolStrip
  4. {
  5. public bool SizingGrip { get; set; }
  6. internal protected override void ApplyStyle(ToolStripProfessionalRenderer r)
  7. {
  8. control.Resources["ToolBarHorizontalBackground"] = r.StatusBarBackground;
  9. }
  10. public StatusStrip()
  11. {
  12. GripStyle = ToolStripGripStyle.Hidden;
  13. Dock = DockStyle.Bottom;
  14. Padding = new Padding(6, 0, 6, 0);
  15. AutoSize = false;
  16. control.BorderThickness = new Thickness(0);
  17. }
  18. }
  19. }