溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

C#如何實(shí)現(xiàn)文件拖拽和pixturBox縮放與拖拽功能

發(fā)布時(shí)間:2021-07-10 11:11:01 來源:億速云 閱讀:238 作者:小新 欄目:編程語言

這篇文章主要為大家展示了“C#如何實(shí)現(xiàn)文件拖拽和pixturBox縮放與拖拽功能”,內(nèi)容簡(jiǎn)而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領(lǐng)大家一起研究并學(xué)習(xí)一下“C#如何實(shí)現(xiàn)文件拖拽和pixturBox縮放與拖拽功能”這篇文章吧。

文件拖拽:

 效果:將一個(gè)文件拖拽到窗體的某個(gè)控件時(shí),將該控件的路徑顯示在該控件上,只要拿到了路徑自然可以讀取文件中的內(nèi)容了。

 將一個(gè)控件的屬性AllowDrop設(shè)置為true,然后添加DragDrop、DragEnter時(shí)間處理函數(shù),如下:

private void txtAppPath_DragEnter(object sender, System.Windows.Forms.DragEventArgs e)
    {
      if (e.Data.GetDataPresent(DataFormats.FileDrop))
      {
        e.Effect = DragDropEffects.Link;
      }
      else
      {
        e.Effect = DragDropEffects.None;
      }
    }
    private void txtAppPath_DragDrop(object sender, System.Windows.Forms.DragEventArgs e)
    {
      txtLocalFileName.Text = ((System.Array)e.Data.GetData(DataFormats.FileDrop)).GetValue(0).ToString();
    }

圖片的縮放和拖拽:

一、實(shí)現(xiàn)鼠標(biāo)滾輪控制圖片縮放;

1、設(shè)置PixtureBox屬性:

  Dock:none

  SizeMode:StretchImage

2、添加事件:

(1)設(shè)置綁定圖片路徑

private void ScrewInfoForm_Shown(object sender, EventArgs e)
    {
      //加載裝配圖紙
      string drawingPath = Path.Combine(@"\\192.168.2.136\PCS", productCode + ".png");
      try
      {
        pbxDrawing.Load(drawingPath);
      }
      catch (Exception ex)
      {
        MessageBox.Show("加載裝配圖紙失敗,詳細(xì):" + ex.Message, "測(cè)量", MessageBoxButtons.OK, MessageBoxIcon.Error);
        return;
      }
    }

(2)添加事件1

pbxDrawing.MouseWheel += new MouseEventHandler(pbxDrawing_MouseWheel);
//實(shí)現(xiàn)滾輪縮放
    private void pbxDrawing_MouseWheel(object sender, System.Windows.Forms.MouseEventArgs e)
    {
      if (e.Delta < 0)
      {
        this.pbxDrawing.Width = this.pbxDrawing.Width * 9 / 10;
        this.pbxDrawing.Height = this.pbxDrawing.Height * 9 / 10;
      }
      else
      {
        this.pbxDrawing.Width = this.pbxDrawing.Width * 11 / 10;
        this.pbxDrawing.Height = this.pbxDrawing.Height * 11 / 10;
      }
    }

(3)添加事件2

//實(shí)現(xiàn)移動(dòng)圖片
    int xPos;
    int yPos;
    bool MoveFlag;
    private void pbxDrawing_MouseDown(object sender, MouseEventArgs e)
    {
      this.pbxDrawing.Focus();
      MoveFlag = true;//已經(jīng)按下.
      xPos = e.X;//當(dāng)前x坐標(biāo).
      yPos = e.Y;//當(dāng)前y坐標(biāo).
    }
    //在picturebox的鼠標(biāo)按下事件里.
    private void pbxDrawing_MouseUp(object sender, MouseEventArgs e)
    {
      MoveFlag = false;
    }
    //在picturebox鼠標(biāo)移動(dòng)
    private void pbxDrawing_MouseMove(object sender, MouseEventArgs e)
    {
      if (MoveFlag)
      {
        pbxDrawing.Left += Convert.ToInt16(e.X - xPos);//設(shè)置x坐標(biāo).
        pbxDrawing.Top += Convert.ToInt16(e.Y - yPos);//設(shè)置y坐標(biāo).
      }
    }

以上是“C#如何實(shí)現(xiàn)文件拖拽和pixturBox縮放與拖拽功能”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對(duì)大家有所幫助,如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI