経由でさまざまな種類のデータを受け入れることができるように、WPF ウィンドウを設定しようとしていますDrag and Drop
。新しいプロジェクトを作成し、ウィンドウを次のように設定すると:
<Window x:Class="DropShare.Window1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Window1" Height="300" Width="300" AllowDrop="True" DragEnter="Window_DragEnter">
<Grid>
</Grid>
</Window>
コードビハインドを次のように設定します。
public partial class Window1 : Window
{
public Window1()
{
InitializeComponent();
}
private void Window_DragEnter(object sender, DragEventArgs e)
{
}
}
私DragEnter
はファイルのために発砲するだけです。テキスト、画像など、他のものに対しては決して発火しません。
足りないものはありますか?私が読んだすべてのチュートリアルは、DragEnter
イベントハンドラーが私が受け入れるものを述べさせてくれるので、これが必要なすべてであることを示唆しているようです。