Hi, Sascha,

You have a beginner's tutorial here:
http://zetcode.com/gui/gtksharp/

I suspect that you want to "connect" your properties with the corresponding
widgets. In order to do that, you need to create events.
For example, say that your "ok" button is called "btOk":

==
btOk.Clicked += (o, e) => {
    Title = entry2.Text;
    // ...more assignments
}
==

Hope this helps.
-- Baltasar
_______________________________________________
Gtk-sharp-list maillist  -  [email protected]
http://lists.dot.net/mailman/listinfo/gtk-sharp-list

Reply via email to