我试图像这张照片一样得到焦点:
[ -
所以我可以选择一个TextBox并写入它,同时还有Focus on the Accept按钮
private void frm_redimensionar_Load(object sender, EventArgs e)
{
if (frm_MonoPaint.Exporto == " ")
{
num_amplada.Value = 32;
num_alcada.Value = 32;
}
num_amplada.Focus(); //
bttn_enviar.Focus(); //
}
private void bttn_cancelar_Click(object sender, EventArgs e)
{
Close();
}
private void bttn_enviar_Click(object sender, EventArgs e)
{
DialogResult = DialogResult.OK;
Close();
}
public int redAlcada()
{
return Convert.ToInt32(num_alcada.Value);
}
public int redAmplada()
{
return Convert.ToInt32(num_amplada.Value);
}
protected override bool ProcessCmdKey(ref Message msg, Keys keyData)
{
if (keyData == Keys.Escape)
{
this.Close();
return true;
}
return base.ProcessCmdKey(ref msg, keyData);
}
答案 0 :(得分:0)
我找到了自己问题的答案。
""this."" AcceptButton = yourbuttonname;
对于这篇文章来说这是一个糟糕的标题,但是当你不知道你在做什么时会发生这种情况。 .-。