19 lines
379 B
C#
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);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|