Hello list,

in the last weeks i tried out different options to create a GUI under
Linux. Gtk.Builder should be the newest option, but sadly with a lack of
documentation with using in C#. The easiest way for me is now using
stetic in MonoDevelop. After changing now the GUI to stetic it runs
perfectly.

The problem with my App.config and empty Properties are gone now. I had
placed the App.config not in my main-projects directory but in my Engine
project where the logic lives. After putting that into the main project
the config file items will be connected to the properties correctly. So
i would like to thank all helpers, specially Baltasar :-)

The only Properties who actually not be filled are that 4 one from the
GUI. My code for assigning the widgets content looks like:

protected void OnBtnRunCreationClicked (object sender, EventArgs e)
{
    cboEnvironment.Active = Math.Max(cboEnvironment.Active, 0);
    Environment = cboEnvironment.ActiveText;
    cboDocType.Active = Math.Max(cboDocType.Active, 0);
    DocType = cboDocType.ActiveText;
    PublicationTitle = entryTitle.Text;
    Language = entryLanguage.Text;
    Publication.Create();
}

Maybe anyone has an idea to fix it?
-- 


<https://saigkill.github.io/>

Sascha Manns
sascha.ma...@mailbox.org <mailto:sascha.ma...@mailbox.org>
GPG: 0x168428cdb1f20ab1
<http://pgpkey.org/pks/lookup?op=vindex&search=0x168428cdb1f20ab1&fingerprint=on>
jabber:sascha.ma...@jabber.org <jabber:sascha.ma...@jabber.org>


Maifeldstraße 10
56727 Mayen
mobile: +49-1573-9242730
home: +49-2651-4014045
https://saigkill.github.io

Twitter <https://twitter.com/saigkill> Facebook
<https://www.facebook.com/sascha.manns> LinkedIn
<https://de.linkedin.com/in/saigkill> Skype <skype:schurik0815?call>
Github <https://github.com/saigkill> Xing
<https://www.xing.com/profile/Sascha_Manns4>

Attachment: signature.asc
Description: OpenPGP digital signature

_______________________________________________
Gtk-sharp-list maillist  -  Gtk-sharp-list@lists.dot.net
http://lists.dot.net/mailman/listinfo/gtk-sharp-list

Reply via email to