Visual Basic 中学校 掲示板 投稿の管理
タグのない投稿を抽出
統計
RSS
Visual Basic 中学校
投稿一覧
ドラッグアンドドロップで
この投稿へのリンク
https://keijiban.umayadia.com/ThreadDetail.aspx?ThreadId=9352#CommentId12890
この投稿の削除
削除パスワード
削除する
コメント本文
投稿者
kent
 (社会人)
投稿日時
2009/9/17 21:36:32
PictureBox1の画像を PictureBox2にドラッグアンドドロップして画像を移動
させたいのですが、できません。
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
PictureBox1.AllowDrop = True
PictureBox2.AllowDrop = True
End Sub
Private Sub PictureBox1_DragEnter(ByVal sender As Object, ByVal e As System.Windows.Forms.DragEventArgs) Handles pictureBox1.DragEnter,PictureBox2.DragEnter
If e.Data.GetDataPresent(DataFormats.FileDrop) Then
e.Effect = DragDropEffects.Copy
End If
End Sub
Private Sub PictureBox1_DragDrop(ByVal sender As Object, ByVal e As System.Windows.Forms.DragEventArgs) Handles PictureBox2.DragDrop,PictureBox1.DragDrop
Dim FileName As String
FileName = e.Data.GetData(DataFormats.FileDrop)(0)
PictureBox1.Image = Image.FromFile(FileName)
End Sub