You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
823 B
30 lines
823 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Windows.Forms;
|
|
namespace QMAPP.WinForm
|
|
{
|
|
public class KeyEvent
|
|
{
|
|
public void SetKeyToTxt(Control c)
|
|
{
|
|
foreach (Control ctl in c.Controls)
|
|
{
|
|
if (ctl is TextBox)
|
|
{
|
|
if (ctl.Enabled == true)
|
|
{
|
|
((TextBox)ctl).MouseDoubleClick += TxtKey_DoubleClick;
|
|
}
|
|
}
|
|
SetKeyToTxt(ctl);
|
|
}
|
|
}
|
|
public void TxtKey_DoubleClick(object sender, EventArgs e)
|
|
{
|
|
//QMAPP.WinForm.Forms.Common.TouchKey key = new Forms.Common.TouchKey((TextBox)sender);
|
|
//key.ShowDialog();
|
|
}
|
|
}
|
|
}
|
|
|