mirror of
https://github.com/colhountech/DarkUI.Net5.git
synced 2025-07-02 07:09:27 +03:00
22 lines
425 B
C#
22 lines
425 B
C#
using DarkUI.Renderer;
|
|
using System.Drawing;
|
|
using System.Windows.Forms;
|
|
|
|
namespace DarkUI
|
|
{
|
|
public class DarkToolStrip : ToolStrip
|
|
{
|
|
#region Constructor Region
|
|
|
|
public DarkToolStrip()
|
|
{
|
|
Renderer = new DarkToolStripRenderer();
|
|
Padding = new Padding(5, 0, 1, 0);
|
|
AutoSize = false;
|
|
Size = new Size(1, 28);
|
|
}
|
|
|
|
#endregion
|
|
}
|
|
}
|