|
分類:[C#]
こんにちは
ご存じの方がおられたら教えていただきたいのですが
VS2010で作られたドラッグアンドドロップのサンプルプログラムを
VS2012に変換すると動作しなくなりました。
試しに VS2012で新規に以下の様に、フォームにテキストボックスを
貼り付けただけの簡単なコードを書いて実行してもやはり動作しませんでした。
環境
Windows 7 Pro(x64)
.NETのターゲットフレームワークを変えてみたり思いつくことはしたつもりなのですが
手詰まり状態です。
VS2012でドラッグアンドドロップを動作させるには何か設定が必要になったのでしょうか?
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace WindowsFormsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void textBox1_DragEnter(object sender, DragEventArgs e)
{
e.Effect = DragDropEffects.All;
}
private void textBox1_DragDrop(object sender, DragEventArgs e)
{
textBox1.Text = "drop";
}
private void Form1_Load(object sender, EventArgs e)
{
textBox1.AllowDrop = true;
}
}
}
|