我有一个GTK TextView
,我需要将选定的文字放入字符串中,我该怎么做?
有事件SelectionGet,但它似乎不起作用。 (从未触发)
答案 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;
}
}