Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
GTK を持っていて、TextView選択したテキストを文字列に入れる必要があります。どうすればよいですか?
TextView
イベントSelectionGetがありますが、動作していないようです。(トリガーされたことはありません)
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; } }