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 に答える