0

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

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

4

1 回答 1

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;
   }
}
于 2013-07-22T12:04:05.750 回答