[Mono-winforms-list] how to use the clipboard?

2009-03-25 Thread Martin Matusiak
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) {

[Mono-winforms-list] do tooltips work?

2009-03-22 Thread Martin Matusiak
So I put a bunch of tooltips on comboboxes and numericupdowns and the former seems to work while the latter doesn't. This goes for 1.9.1 as well as r128890. Is this still work in progress or? Martin ___ Mono-winforms-list maillist -

[Mono-winforms-list] problem with Binding

2009-03-09 Thread Martin Matusiak
Greetings, I'm trying to do a hello world data binding to widgets. I've tried a couple of tutorials and none of the example code worked. Here's what I did: http://www.matusiak.eu/numerodix/blog/index.php/2009/03/09/data-binding-made-of-fail/ Martin