我嘗試過下面的方法,但它根本無法工作,當前焦點停留在我通過UI設置爲TabIndex 0的第一個文本框中: -如何從C#中的代碼設置Tab索引或當前主動控件
private void OnFormLoad(object sender, EventArgs e)
{
txtServername.Text = Properties.Settings.Default.LastServerName;
txtDatabase.Text = Properties.Settings.Default.LastDatabase;
txtUsername.Text = Properties.Settings.Default.LastUserName;
if (!String.IsNullOrWhiteSpace(txtServername.Text))
txtDatabase.SelectNextControl(ActiveControl, false, true, true, true);
if (!String.IsNullOrWhiteSpace(txtDatabase.Text))
txtUsername.SelectNextControl(ActiveControl, false, true, true, true);
if (!String.IsNullOrWhiteSpace(txtUsername.Text))
txtPassword.SelectNextControl(ActiveControl, false, true, true, true);
}
有人能請建議解決上述問題嗎?
我認爲你可以使用文本框 –
的FOUCS方法@ Md.ParvezAlam試過!那不起作用 –