为什么光标在c#中的combobox DroppedDown上消失

时间:2017-04-02 11:47:41

标签: c# winforms combobox

我有一个组合框,其 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
    }

问题

我想知道光标放在组合框上的光标消失背后的原因(不是解决方案)。

0 个答案:

没有答案