Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
您好,是否可以通过单击按钮来下拉我的组合框?
因为我打算使用一个组合框和一个按钮,这样如果用户单击该按钮,组合框就会下拉。
我需要一个按钮,因为我将它用于触摸屏设备。谢谢 :)
使用此代码:
private void button1_Click(object sender, EventArgs e) { comboBox1.DroppedDown = true; }
希望能帮助到你 :)
使用 ComboBox 的 DroppedDown 属性
comboBox1.DroppedDown= true;