Why ComboBox hides cursor when DroppedDown is set?

后端 未结 5 1969
长发绾君心
长发绾君心 2020-12-07 00:23

Let\'s create WinForms Application (I have Visual Studio 2008 running on Windows Vista, but it seems that described situation takes place almost everywhere from Win98 to Vis

5条回答
  •  北海茫月
    2020-12-07 01:11

    I was able to work around the problem like this:

    comboBox1.DroppedDown = true;
    Cursor.Current = Cursors.Default;
    

提交回复
热议问题