C# Button 防止连续点击
时间:2015-02-02 19:52:42
收藏:0
阅读:1132
if (!allow_click)
{
return;
}
allow_click = false;
//do something...
allow_click = true;
评论(0)