屠宰场客户端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
557 B

using System;
using System.Collections.Generic;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace BWP.WinFormControl
{
public class UButton : Button
{
protected override void OnClick(EventArgs e)
{
this.BackColor = Color.Aqua;
this.Refresh();
try
{
base.OnClick(e);
}
finally
{
System.Threading.Thread.Sleep(200);
this.BackColor = SystemColors.Control;
this.Refresh();
}
}
}
}