1
0
mirror of https://github.com/mastercodeon314/KsDumper-11.git synced 2024-11-14 18:38:04 +01:00
KsDumper-11/DarkControls/Controls/MinimizeButton.cs
2023-01-21 19:32:57 -06:00

25 lines
824 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DarkControls.Controls
{
public class MinimizeButton : WindowsDefaultTitleBarButton
{
public MinimizeButton()
{
this.ButtonType = DarkControls.Controls.WindowsDefaultTitleBarButton.Type.Minimize;
this.ClickColor = System.Drawing.Color.Red;
this.ClickIconColor = System.Drawing.Color.Black;
this.HoverColor = System.Drawing.Color.OrangeRed;
this.HoverIconColor = System.Drawing.Color.Black;
this.IconColor = System.Drawing.Color.Black;
this.IconLineThickness = 2;
this.Size = new System.Drawing.Size(40, 40);
this.UseVisualStyleBackColor = true;
}
}
}