[Gtk-sharp-list] Store GUI Output in Properties

Baltasar GarcĂ­a Perez-Schofield baltasarq at gmail.com
Sun Jan 1 19:19:15 UTC 2017


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
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.dot.net/pipermail/gtk-sharp-list/attachments/20170101/445235b9/attachment.html>


More information about the Gtk-sharp-list mailing list