When using GTK# from C# on Mono, I often find myself copying out C# data structures into Gtk.ListStore — it would be much easier if there was a Gtk.TreeModel which wrapped an IEnumerable. Does such a thing exist?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I haven’t played with GTK# for a long time but iirc GTK# lacks the databinding features that MWF and ASP.Net have. You could implement your own wrappers/helpers. I also found this http://tirania.org/blog/archive/2008/Mar-26-1.html that might be of help to you. According to the post it should extend GTK# to allow for databinding to datasources like IEnumerable lists.