我不知道该怎么做,但这就是我想做的事情:
这应该是它的样子:
我至少可以识别鼠标滚轮:
public Main()
{
InitializeComponent();
MouseWheel += new MouseEventHandler(mousewheel);
}
void mousewheel(object sender, MouseEventArgs e)
{
if (e.Delta > 0) { Zoom("in"); } // up
else if (e.Delta < 0) { Zoom("out"); } // down
}
public void Zoom(string in_or_out)
{
if (in_or_out == "in")
{
}
}