Hi,

> So I found that on linux the standard clipboard behavior isn't there.
> I select text with the mouse, it's not on the clipboard. So I tried
> this:
> 
> RichTextBox txt = new RichTextBox();
> txt.SelectionChanged += delegate (object o, EventArgs a) {
>       if (txt.SelectedText != String.Empty) {
>               Clipboard.SetDataObject(txt.SelectedText);
>               Console.WriteLine(Clipboard.GetText());
>       }
> };

Okay, let's try and find out what's going on. First, your distro and
version of mono being used. Second, have you tried pasting into
something desktop agnostic (such as OpenOffice.org).

You might be better off using a get/set system here as well and see if
that does anything.

If all else fails, please report it to BZ with a small test case...

TTFN

Paul
-- 
Sie können mich aufreizen und wirklich heiß machen!

Attachment: signature.asc
Description: This is a digitally signed message part

_______________________________________________
Mono-winforms-list maillist  -  [email protected]
http://lists.ximian.com/mailman/listinfo/mono-winforms-list

Reply via email to