WPF中textbox加入文件拖放操作_.NET_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > .NET > WPF中textbox加入文件拖放操作

WPF中textbox加入文件拖放操作

 2014/6/28 16:45:55  一 剑  程序员俱乐部  我要评论(0)
  • 摘要:namespaceWpfApplication1{publicpartialclassMainWindow:Window{publicMainWindow(){InitializeComponent();}privatevoidtextbox1_PreviewDragOver(objectsender,DragEventArgse){e.Effects=DragDropEffects.Copy;e.Handled=true;}privatevoidtextbox1_PreviewDrop
  • 标签:文件 操作

namespace WpfApplication1
{
  public partial class MainWindow : Window
  {
    public MainWindow()
    {
      InitializeComponent();
    }

    private void textbox1_PreviewDragOver(object sender, DragEventArgs e)
    {
      e.Effects = DragDropEffects.Copy;
      e.Handled = true;
    }

    private void textbox1_PreviewDrop(object sender, DragEventArgs e)
    {
      foreach (string f in (string[])e.Data.GetData(DataFormats.FileDrop))
    {
      textbox1.Text = f;
    }
    }
  }
}

发表评论
用户名: 匿名