1
0
mirror of https://github.com/chylex/TweetDuck.git synced 2025-08-21 03:54:07 +02:00
Files

17 lines
365 B
C#

using System;
using System.Windows.Forms;
namespace TweetDuck.Controls {
sealed class FlatButton : Button {
protected override bool ShowFocusCues => false;
public FlatButton() {
GotFocus += FlatButton_GotFocus;
}
private void FlatButton_GotFocus(object sender, EventArgs e) { // removes extra border when focused
NotifyDefault(false);
}
}
}