如何检索Gtk TextView的选定文本

本文关键字:TextView 文本 Gtk 何检索 检索 | 更新日期: 2023-09-27 18:24:08

我有一个GTK TextView,我需要将选定的文本放入字符串中,如何做到这一点?

存在SelectionGet事件,但它似乎不起作用。(从未触发)

如何检索Gtk TextView的选定文本

public string Selection
{
   get
   {
       Gtk.TextIter A;
       Gtk.TextIter B;
       if (textView.Buffer.GetSelectionBounds(out A, out B))
       {
           return textView.Buffer.GetText(A, B, true);
       }
       // return null when there is no selection
       return null;
   }
}