7

イベントPictureBoxを使用してズームインできるカスタムがあります。MouseWheel次に、パン機能を追加します。つまり、PictureBoxがズーム状態のときに、ユーザーが左クリックしてクリックを押したままマウスを動かすと、画像は画像ボックス内でパンします。

これが私のコードですが、残念ながら機能しません!もうどこを見ればいいのかわからない…

private Point _panStartingPoint = Point.Empty;
private bool _panIsActive;

private void CurveBox_MouseDown(object sender, MouseEventArgs e)
{
    if (e.Button == MouseButtons.Left)
    {
        Focus();
        _panIsActive = true;
        _panStartingPoint = e.Location;
    }
}

private void CurveBox_MouseUp(object sender, MouseEventArgs e)
{
    _panIsActive = false;
}

private void CurveBox_MouseLeave(object sender, EventArgs e)
{
    _panIsActive = false;

}

private void CurveBox_MouseMove(object sender, MouseEventArgs e)
{
    if(_panIsActive && IsZoomed)
    {
        var g = CreateGraphics(); //Create graphics from PictureBox

        var nx = _panStartingPoint.X + e.X;
        var ny = _panStartingPoint.Y + e.Y;
        var sourceRectangle = new Rectangle(nx, ny, Image.Width, Image.Height);
        g.DrawImage(Image, nx, ny, sourceRectangle, GraphicsUnit.Pixel);
    }
}

イベントを疑っていMouseMoveます...このイベントで何かが起こったかどうか、および/またはnx正しいnyポイントが含まれているかどうかはわかりません。

どんな助け/ヒントも本当に適用されます!

4

1 に答える 1

15

数学は逆だと思います。このようにしてみてください:

private Point startingPoint = Point.Empty;
private Point movingPoint = Point.Empty;
private bool panning = false;

void pictureBox1_MouseDown(object sender, MouseEventArgs e) {
  panning = true;
  startingPoint = new Point(e.Location.X - movingPoint.X,
                            e.Location.Y - movingPoint.Y);
}

void pictureBox1_MouseUp(object sender, MouseEventArgs e) {
  panning = false;
}

void pictureBox1_MouseMove(object sender, MouseEventArgs e) {
  if (panning) {
    movingPoint = new Point(e.Location.X - startingPoint.X, 
                            e.Location.Y - startingPoint.Y);
    pictureBox1.Invalidate();
  }
}

void pictureBox1_Paint(object sender, PaintEventArgs e) {
  e.Graphics.Clear(Color.White);
  e.Graphics.DrawImage(Image, movingPoint);
}

グラフィックオブジェクトを破棄していません。CreateGraphicsはとにかく一時的な描画であるため(最小化すると消去されます)、描画コードをPaintイベントに移動し、ユーザーがパンしているときに無効にします。

于 2012-08-21T16:16:32.913 に答える