using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace DragandDrop
{
public partial class Form1 : Form
{
protected bool validData;
string path;
protected Image image;
protected Thread getImageThread;
public Form1()
{
InitializeComponent();
}
private void Form1_DragEnter(object sender, DragEventArgs e)
{
string filename;
validData = GetFilename(out filename, e);
if (validData)
{
path = filename;
getImageThread = new Thread(new ThreadStart(LoadImage));
getImageThread.Start();
e.Effect = DragDropEffects.Copy;
}
else
e.Effect = DragDropEffects.None;
}
private bool GetFilename(out string filename, DragEventArgs e)
{
bool ret = false;
filename = String.Empty;
if ((e.AllowedEffect & DragDropEffects.Copy) == DragDropEffects.Copy)
{
Array data = ((IDataObject)e.Data).GetData("FileDrop") as Array;
if (data != null)
{
if ((data.Length == 1) && (data.GetValue(0) is String))
{
filename = ((string[])data)[0];
string ext = Path.GetExtension(filename).ToLower();
if ((ext == ".jpg") || (ext == ".png") || (ext == ".bmp"))
{
ret = true;
}
}
}
}
return ret;
}
private void Form1_DragDrop(object sender, DragEventArgs e)
{
if (validData)
{
while (getImageThread.IsAlive)
{
Application.DoEvents();
Thread.Sleep(0);
}
pictureBox1.Image = image;
}
}
protected void LoadImage()
{
image = new Bitmap(path);
}
}
}
'개발 > C#' 카테고리의 다른 글
[이미지] C# Picturebox 내에서 이미지 움직이기 (1) | 2018.02.07 |
---|---|
[이미지] C# 이미지위에 다른이미지 올려 마우스로 이동하기 (0) | 2018.02.07 |
[이미지] C# PictureBox 움직이기 (0) | 2018.02.07 |
[이미지] C# 이미지 회전 (0) | 2018.02.07 |
[팁] C# 프로그램 중복실행 방지 (0) | 2018.02.06 |
[그래픽] C# 영역 캡춰하기 (0) | 2018.02.05 |
[팁] 폼 상단바 클릭 이벤트 (0) | 2018.02.02 |
[팁] C# FormBorderStyle None 에서 폼 사이즈 조절하기 (4) | 2018.02.01 |