gpt4 book ai didi

c# - Control.MouseWheel 事件

转载 作者:太空宇宙 更新时间:2023-11-03 12:26:22 26 4
gpt4 key购买 nike

我创建了一个简单的应用程序,用于使用鼠标滚轮缩放图片框内的图像。它在我的开发笔记本电脑 (Win10) 上完美运行。但是当我在我的台式电脑(Win7)上运行它时,缩放(使用鼠标滚轮)功能不起作用。

下面是我的实现片段:

        private void InitializeComponent()
{
this.pictureBox1 = new System.Windows.Forms.PictureBox();
this.panel1 = new System.Windows.Forms.Panel();
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
this.panel1.SuspendLayout();
this.SuspendLayout();
//
// pictureBox1
//
this.pictureBox1.Location = new System.Drawing.Point(4, 0);
this.pictureBox1.Margin = new System.Windows.Forms.Padding(4);
this.pictureBox1.Name = "pictureBox1";
this.pictureBox1.Size = new System.Drawing.Size(493, 583);
this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
this.pictureBox1.TabIndex = 0;
this.pictureBox1.TabStop = false;
this.pictureBox1.Click += new System.EventHandler(this.pictureBox1_Click);
this.pictureBox1.MouseDown += new System.Windows.Forms.MouseEventHandler(this.pictureBox1_MouseDown);
this.pictureBox1.MouseMove += new System.Windows.Forms.MouseEventHandler(this.pictureBox1_MouseMove);
this.pictureBox1.MouseUp += new System.Windows.Forms.MouseEventHandler(this.pictureBox1_MouseUp);
this.pictureBox1.MouseWheel += new System.Windows.Forms.MouseEventHandler(this.pictureBox1_MouseWheel);
//
// panel1
//
this.panel1.AutoScroll = true;
this.panel1.AutoSize = true;
this.panel1.Controls.Add(this.pictureBox1);
this.panel1.Location = new System.Drawing.Point(1, 2);
this.panel1.Name = "panel1";
this.panel1.Size = new System.Drawing.Size(714, 593);
this.panel1.TabIndex = 1;
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.AutoScroll = true;
this.ClientSize = new System.Drawing.Size(719, 594);
this.Controls.Add(this.panel1);
this.Margin = new System.Windows.Forms.Padding(4);
this.Name = "Form1";
this.Text = "Form1";
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Form1_FormClosing);
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
this.panel1.ResumeLayout(false);
this.panel1.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();

}

private float ZOOM = 1.5f
private void pictureBox1_MouseWheel(object sender, System.Windows.Forms.MouseEventArgs e)
{
pictureBox1.Focus();
if (e.Delta < 0) //ZoomIn
{
Console.WriteLine("Mouse Wheel Zoom In");

if ((pictureBox1.Width < panel1.Width) && (pictureBox1.Height < panel1.Height))
{
pictureBox1.Width = Convert.ToInt32(pictureBox1.Width * ZOOM);
pictureBox1.Height = Convert.ToInt32(pictureBox1.Height * ZOOM);
pictureBox1.SizeMode = PictureBoxSizeMode.StretchImage;

this.Refresh();
}

}
else
{
//ZoomOut
Console.WriteLine("Mouse Wheel Zoom Out");
if ((pictureBox1.Width > panel1.Width) &&
(pictureBox1.Height > panel1.Height))
{
pictureBox1.SizeMode = PictureBoxSizeMode.StretchImage;
pictureBox1.Width = Convert.ToInt32(pictureBox1.Width / ZOOM);
pictureBox1.Height = Convert.ToInt32(pictureBox1.Height / ZOOM);
}
}
}

我认为这是我的桌面 PC 上的 Control.MouseWheel 事件的问题。当我调试时,尽管我已经在图片框内聚焦或单击,但此事件从未出现。当我通过过滤 WM_MOUSEWHEEL = 0x20a; 消息尝试使用实现的其他实现时,它在我的笔记本电脑和台式机上都有效。知道为什么会发生这些不同的行为吗?感谢您的时间。

最佳答案

原来 Win 10 有一个名为“当我将鼠标悬停在非事件窗口上时滚动非事件窗口”的系统选项。这就是为什么我以前的代码只能在 Win 10 机器上工作。我添加了以下行来修复它。谢谢@HansPassant小费。

    private void picBox_MouseHover(object sender, EventArgs e)
{
picBox.Focus();
}

关于c# - Control.MouseWheel 事件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44735362/

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