using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Windows.Forms; namespace Tanshu.Common.KeyboardControl { public partial class UnselectableButton : Button { public UnselectableButton() { InitializeComponent(); this.SetStyle(ControlStyles.Selectable, false); } } }