narsil/Tanshu.Common.KeyboardControl/UnselectableButton.cs
2011-01-06 12:47:00 +05:30

19 lines
379 B
C#

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);
}
}
}