1
0
mirror of https://github.com/mastercodeon314/KsDumper-11.git synced 2024-12-03 18:47:20 +01:00
KsDumper-11/DarkControls/Controls/MaximizeButton.cs

25 lines
824 B
C#
Raw Normal View History

2023-01-22 02:32:57 +01:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DarkControls.Controls
{
public class MaximizeButton : WindowsDefaultTitleBarButton
{
public MaximizeButton()
{
this.ButtonType = DarkControls.Controls.WindowsDefaultTitleBarButton.Type.Maximize;
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;
}
}
}