我有一个组合框,其 DroppedDownStyle = DropDownList ,在其 GotFocus 事件中,我编写了以下代码,以便comboBox尽快收到焦点,打开它的列表
static void comboBox1_GotFocus(object sender, EventArgs e)
{
comboBox1.DroppedDown = true;
}
现在,只要上面的代码执行,我的光标就会消失。我知道它的解决方法是
static void comboBox1_GotFocus(object sender, EventArgs e)
{
comboBox1.DroppedDown = true;
Cursor.Current = Cursors.Default;//This statement
}
我想知道光标放在组合框上的光标消失背后的原因(不是解决方案)。