1
0
mirror of https://github.com/mastercodeon314/KsDumper-11.git synced 2024-12-02 18:17:19 +01:00
KsDumper-11/DarkControls/Controls/DarkSelectFileButton.cs
2023-01-21 19:32:57 -06:00

27 lines
852 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.Drawing;
namespace DarkControls.Controls
{
public class DarkSelectFileButton : Button
{
public DarkSelectFileButton()
{
this.BackColor = Color.FromArgb(33, 33, 33);
this.ForeColor = Color.Silver;
this.FlatAppearance.BorderColor = System.Drawing.Color.Silver;
this.FlatAppearance.BorderSize = 0;
this.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Silver;
this.Image = Properties.Resources.selectFileBtn_Image;
this.Size = new Size(75, 23);
this.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.UseVisualStyleBackColor = true;
}
}
}