想要实现picturebox控件里面用鼠标滚轮让图片上下翻页和按住ctrl键加鼠标滚轮实现图片放大缩小这两个功能,就要借助于picturebox控件中的三个事件。
第一个是pictureBox1_KeyUp。
第二个是pictureBox1_KeyDown。
第三个是PictureBox1_MouseWheel
下面直接上代码就可以了:
private void pictureBox1_KeyUp(object sender, KeyEventArgs e)//判断是否按下ctrl键
{
//throw new NotImplementedException();
if (e.KeyCode == Keys.ControlKey)//抬起ctrl键
{
n = 0;
//MessageBox.Show("....dada");
}文章来源:https://www.toymoban.com/news/detail-487267.html
}
private void pictureBox1_KeyDown(object sender, KeyEventArgs e)//判断是否抬起ctrl键
{
//throw new NotImplementedException();
if (e.KeyCode == Keys.ControlKey)//按下ctrl键
{
n = 1;
//MessageBox.Show("....dada");
}
}
private void PictureBox1_MouseWheel(object sender, MouseEventArgs e)
{
//throw new NotImplementedException();
if (e.Delta > 0 && n != 1)//滚轮向上翻页
{
button4.PerformClick();
if (i <= 0)
{
//MessageBox.Show("已经是第一个图片了");
i++;
}
if (i > 0)
{
i--;
}
if (i >= 0 && i < images.Count)
{
pictureBox1.Image = images[i];
}
}
if (e.Delta <= 0 && n != 1)//滚轮向下翻页
{
button5.PerformClick();
if (i < images.Count)
{
i++;
}
if (i < images.Count && i >= 0)
{
pictureBox1.Image = images[i];
}
else
{
//MessageBox.Show("已经是最后的图片了");
i--;
}
}
if (e.Delta > 0 && n == 1)//滚轮放大图片
{
pictureBox1.Width = (int)(pictureBox1.Width * 1.1);
pictureBox1.Height = (int)(pictureBox1.Height * 1.1);
}
if (e.Delta <= 0 && n == 1)//滚轮缩小图片
{
pictureBox1.Width = (int)(pictureBox1.Width * 0.9);
pictureBox1.Height = (int)(pictureBox1.Height * 0.9);
}
}
大家应该都能看懂,有问题大家可以私信联系我。文章来源地址https://www.toymoban.com/news/detail-487267.html
到了这里,关于C# 在picturebox控件里实现用鼠标滚轮让图片上下翻页,按住ctrl键加鼠标滚轮实现图片放大缩小的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!