谁能告诉我为什么AllowDrop无法与文本框一起使用

时间:2019-06-24 06:31:16

标签: c# wpf

我目前有一个程序,该程序的顶部有一个菜单栏,在其下方有一个文本框,用于显示文本。底部是一个普通的文本框,用作搜索栏。我当前的问题是我为整个窗口(甚至是文本框本身)激活了AllowDrop,但是它不适用于所有文本框,应该可以将文件拖放到任何位置并将包含的文本插入文本框。有一个想法为什么对文本框不起作用?

<Window x:Class="SuchToolBuild.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
        xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
        xmlns:local="clr-namespace:SuchToolBuild"
        mc:Ignorable="d"
        AllowDrop="True"
        KeyDown="Forward"
        KeyUp="Backwards"
        Title="SuchTool" Height="800" Width="1280">

1 个答案:

答案 0 :(得分:0)

首先,我在构造函数中创建了2个新的事件处理程序

public MainWindow()
    {
        InitializeComponent();

        this.WindowStartupLocation = WindowStartupLocation.CenterScreen;

        RichTextBoxForOpenText.AddHandler(RichTextBox.DragOverEvent, new DragEventHandler(RichTextBox_DragOver), true);

        RichTextBoxForOpenText.AddHandler(RichTextBox.DropEvent, new DragEventHandler(RichTextBox_Drop), true);
    }

然后我确定了这些事件应该发生什么。

 private void RichTextBox_DragOver(object sender, DragEventArgs e)
    {
        if (e.Data.GetDataPresent(DataFormats.FileDrop))
        {
            e.Effects = DragDropEffects.All;
        }
        else
        {
            e.Effects = DragDropEffects.None;
        }
        e.Handled = false;
    }

    private void RichTextBox_Drop(object sender,DragEventArgs e)
    {
        if (e.Data.GetDataPresent(System.Windows.DataFormats.FileDrop))
        {
            GetTextFromDroppetFile(e);


        }
    }

这是我从一个拖放的文件中提取文本的方法。

 private void GetTextFromDroppetFile(DragEventArgs e)
    {
        //Die RichTextBox wird hier erstmal gecleart
        RichTextBoxForOpenText.Document.Blocks.Clear();

        string[] filenames = e.Data.GetData(System.Windows.DataFormats.FileDrop) as string[];
        foreach (var name in filenames)
        {

            RichTextBoxForOpenText.AppendText(File.ReadAllText(name));
        }
    }