如何检索Gtk TextView的选定文本

时间:2013-07-22 11:42:54

标签: c# gtk

我有一个GTK TextView,我需要将选定的文字放入字符串中,我该怎么做?

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

1 个答案:

答案 0 :(得分:0)

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;
   }
}