gpt4 book ai didi

C# - 如何防止鼠标滚轮在我的组合框中滚动?

转载 作者:IT王子 更新时间:2023-10-29 03:46:52 25 4
gpt4 key购买 nike

我有一个组合框,我想阻止用户使用鼠标滚轮滚动项目。

有没有简单的方法可以做到这一点?

(C#, VS2008)

最佳答案

使用 MouseWheel ComboBox 的事件:

void comboBox1_MouseWheel(object sender, MouseEventArgs e) {
((HandledMouseEventArgs)e).Handled = true;
}

注意:您必须在代码中创建事件:

comboBox1.MouseWheel += new MouseEventHandler(comboBox1_MouseWheel);

关于C# - 如何防止鼠标滚轮在我的组合框中滚动?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1882993/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com