c# - 在文本框中的鼠标位置放置文本

标签 c# textbox drag-and-drop cursor-position

尽管有很多类似的问题,但我一直找不到答案。我想做的是:

我有一个带有一些文本的文本框和几个带有图片的图片框。如果我执行从图片到文本框的拖放操作,一些文本应该插入到文本框中我进行拖放时光标所在的位置(即发生 mouseup 事件的位置)。

第一部分很好:

private void pictureBox1_MouseDown(object sender, MouseEventArgs e) {
    // Create custom text ...
    pictureBox1.DoDragDrop("Some custom text", DragDropEffects.Copy);
}

private void textBox1_DragEnter(object sender, DragEventArgs e) {
    if (e.Data.GetDataPresent(DataFormats.Text))
        e.Effect = DragDropEffects.Copy;
    else
        e.Effect = DragDropEffects.None;
}

我的问题是如何定义放置文本的位置:

private void textBox1_DragDrop(object sender, DragEventArgs e) {
        textBox1.Text.Insert(CORRECT_POSITION, e.Data.GetData(DataFormats.Text).ToString());
    }

有什么建议吗?

编辑:我试图用 GetCharIndexFromPosition() 获得正确的位置,但它似乎没有返回正确的位置。下面的代码确实返回了一个字符位置,但我不知道它是从哪里得到的。不过,很明显它并不代表光标的位置。

private void textBox1_DragDrop(object sender, DragEventArgs e) {
    TextBox textBox1 = (TextBox)sender;
    System.Drawing.Point position = new System.Drawing.Point(e.X, e.Y);
    int index = textBox1.GetCharIndexFromPosition(position);
    MessageBox.Show(index.ToString());
}

最佳答案

您需要将当前鼠标位置转换为文本框内的客户端坐标。此外,您可以在 DragOver() 事件中移动插入点,以便用户可以看到将插入文本的位置:

    private void pictureBox1_MouseMove(object sender, MouseEventArgs e)
    {
        if (e.Button == System.Windows.Forms.MouseButtons.Left)
        {
            pictureBox1.DoDragDrop("duck", DragDropEffects.Copy);
        }
    }

    void textBox1_DragEnter(object sender, DragEventArgs e)
    {
        if (e.Data.GetDataPresent(DataFormats.Text))
            e.Effect = DragDropEffects.All;
        else
            e.Effect = DragDropEffects.None;
    }

    void textBox1_DragOver(object sender, DragEventArgs e)
    {
        int index = textBox1.GetCharIndexFromPosition(textBox1.PointToClient(Cursor.Position));
        textBox1.SelectionStart = index;
        textBox1.SelectionLength = 0;
    }

    void textBox1_DragDrop(object sender, DragEventArgs e)
    {
        string txt = e.Data.GetData(DataFormats.Text).ToString();
        int index = textBox1.GetCharIndexFromPosition(textBox1.PointToClient(Cursor.Position));
        textBox1.SelectionStart = index;
        textBox1.SelectionLength = 0;
        textBox1.SelectedText = txt;
    }

关于c# - 在文本框中的鼠标位置放置文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27650570/

相关文章:

Android - 使用 ItemTouchHelper.Callback 拖动 RecyclerView

jquery - Control 单击或 Shift 单击多个项目并拖动它们

c# - 如何在 IE9 中使用 MSHTML 的 addEventListener 添加事件监听器?

c# - 多播委托(delegate) C#

uwp - UWP 中的 TextBox 未触发 KeyDown 事件

javascript - 将 fancytree 节点拖到外部 droppable

c# - 从 SQL Server 表中选择 NULL 值

c# - 如何设置 SQL Server Compact 数据库的相对路径?

javascript - 是否可以在 acrobat 中使用 javaScript 选择文本框

javascript - 如何使用 Javascript 获取 anchor 标记内文本框的值?