我的一位朋友正试图在表单显示后立即以编程方式打开一个组合框。 实际上,我不知道是否有办法以这种方式打开组合框,因为在WinForms中,我们可以使用
combobox.DroppedDown = true
并完成了魔术。
有没有办法使用移动框架做同样的事情?
由于
答案 0 :(得分:2)
CF没有显示事件。您应该能够使用表单的BeginInvoke()方法来模拟它,如下所示:
protected override void OnLoad(EventArgs e) {
base.OnLoad(e);
this.BeginInvoke(new Action(() => comboBox1.DroppedDown = true));
}