我有一个具有多种形式的解决方案,每个都可能有文本框/控件和一个显示 SIP 的按钮(底栏是隐藏的)。
当用户单击我的 SIP 按钮时,SIP 已启用,但焦点现在是按钮。我希望用户单击按钮 - 要显示的 SIP,但焦点保持在用户单击按钮之前具有焦点的控件上。有谁知道如何做到这一点?谢谢。
我有一个具有多种形式的解决方案,每个都可能有文本框/控件和一个显示 SIP 的按钮(底栏是隐藏的)。
当用户单击我的 SIP 按钮时,SIP 已启用,但焦点现在是按钮。我希望用户单击按钮 - 要显示的 SIP,但焦点保持在用户单击按钮之前具有焦点的控件上。有谁知道如何做到这一点?谢谢。
您可以通过从 Control 类派生并覆盖 OnPaint 方法来创建自定义按钮,而不是使用标准按钮。以这种方式创建的控件在处理 Click 事件时默认不会获得焦点(在 VS2008 netcf 2.0 上测试)。
public partial class MyCustomButton : Control
{
public MyCustomButton()
{
InitializeComponent();
}
protected override void OnPaint(PaintEventArgs pe)
{
pe.Graphics.DrawString("Show SIP", Font, new SolidBrush(ForeColor), 0, 0);
// Calling the base class OnPaint
base.OnPaint(pe);
}
}
nathan 的解决方案也适用于 Compact Framework 或本机 Windows Mobile 应用程序。在文本框中 GotFocus 设置一个全局变量并在按钮单击事件中使用它来将焦点设置回最后一个活动文本框:
//global var
TextBox currentTB = null;
private void button1_Click(object sender, EventArgs e)
{
inputPanel1.Enabled = !inputPanel1.Enabled;
if(currentTB!=null)
currentTB.Focus();
}
private void textBox1_GotFocus(object sender, EventArgs e)
{
currentTB = (TextBox)sender;
}
问候
约瑟夫
编辑:TextBox 子类的解决方案:
class TextBoxIM: TextBox{
public static TextBox tb;
protected override void OnGotFocus (EventArgs e)
{
tb=this;
base.OnGotFocus (e);
}
}
...
private void btnOK_Click (object sender, System.EventArgs e)
{
string sName="";
foreach(Control c in this.Controls){
if (c.GetType()==typeof(TextBoxIM)){
sName=c.Name;
break; //we only need one instance to get the value
}
}
MessageBox.Show("Last textbox='"+sName+"'");
}
然后,使用 TextBoxIM 代替放置 TextBox。