0
我需要將焦點更改爲我的Windows窗體中的某個事件(例如另一個組合框的SelectedIndexChange事件)中的組合框。我如何實現這一目標?將焦點更改爲組合框
我需要將焦點更改爲我的Windows窗體中的某個事件(例如另一個組合框的SelectedIndexChange事件)中的組合框。我如何實現這一目標?將焦點更改爲組合框
您應該可以使用您想要關注的控件的.Focus()
。
private void comboBox2_SelectedIndexChanged(object sender, EventArgs e)
{
comboBox1.Focus();
}