/// <summary>
/// ComboBox 禁止鼠标滚轮
/// </summary>
public class MyComBox : ComboBox
{
protected override void WndProc(ref Message m)
{
if (m.Msg != 0x020A)
{
base.WndProc(ref m);
}
}
}
Winform 禁止鼠标滚轮操作ComboBox
猜你喜欢
转载自blog.csdn.net/gd6321374/article/details/120057028
今日推荐
周排行