0

我正在尝试使用图片框控件和轨迹栏进行图像幻灯片放映。轨迹栏获得最小值,最大值对应于要显示的图像数量。我使用计时器来获取幻灯片的间隔时间以及轨迹栏值更改。

现在,这是图片框中每个图像的主要内容,我在图像上绘制了一个矩形框。

当表单加载第一张图像时,我无法在第一张图像上绘图。但如果我滚动鼠标滚轮,我可以做到。

在加载第一张图像后,我需要帮助来触发鼠标滚轮滚动事件。

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace test
{

  public partial class Form1 : Form
  {
    public event MouseEventHandler MouseWheel;

    //MouseEventArgs k = new MouseEventArgs(MouseButtons.Middle,0,0,-1);

    string[] pics = { "C:\\Downloads\\folder_picture_green.png", "C:\\Downloads\\Aetherpal.ico", "C:\\Downloads\\folder_picture_green.png" };

    public Form1()
    {
        InitializeComponent();
        this.trackBar1.Minimum = 0;
        this.trackBar1.Maximum = (pics.Count() - 1);
        //this.trackBar1.Maximum = 0;

        imageupdate(0);

        timer1.Start();
        timer1.Interval = 3000;
        this.MouseWheel += test;
        this.MouseWheel(null, null);
    }

    private void test(object sender, System.Windows.Forms.MouseEventArgs e)
    {
        MessageBox.Show("Scrolled");
    }

    private void check(object sender, System.EventArgs e) 
    {
        //if (Initializing == false) { return; }
        if(this.trackBar1.Value < this.trackBar1.Maximum )
        this.trackBar1.Value += 1;
        else
            timer1.Stop();
    }

    private void Valuechange(object sender, System.EventArgs e)
    {
        imageupdate(this.trackBar1.Value);
        if(this.trackBar1.Value < this.trackBar1.Maximum)
            timer1.Start();
    }     

    private void imageupdate(int k)
    {
        this.pictureBox1.Refresh();
        this.pictureBox1.Image = new Bitmap(pics[k]);
        Pen blackPen = new Pen(Color.Blue, 5);
        this.pictureBox1.Refresh();
        using (Graphics g = this.pictureBox1.CreateGraphics())
        {
            g.DrawRectangle(blackPen, 10, 10, 100, 50);
        }
    }
  }
}
4

1 回答 1

0

您可以将此代码添加到表单中以滚动表单(当然使用MouseWheel):

private void Wheel(int ticks, bool down){
  //WM_MOUSEWHEEL = 0x20a
  Message msg = Message.Create(Handle, 0x20a, new IntPtr((down ? -1 : 1)<<16), new IntPtr(MousePosition.X + MousePosition.Y << 16));
  for(int i = 0; i < ticks; i++)
      WndProc(ref msg);
}
//Use it
Wheel(120,true);//Wheel down
Wheel(120,false);//Wheel up

注意:我可以看到您MouseWheel以自己的形式定义事件。这将隐藏基础MouseWheel事件,我认为您没有任何理由这样做,您自己的作为基础事件MouseWheel 不能工作,您必须自己捕获win32 message并提高它,我们应该使用基础MouseWheel事件来代替。(也许您认为您的表单类中没有任何MouseWheel事件?)

于 2013-09-16T16:29:00.613 回答