I would like to write a GTK program with a datagrid. However GTK Sharp is for the .NET Framework. Is there any non-.NET library or framework with a datagrid that I can use?
1 Answer
GTKSharp is a c# wrapper for the native c GTK+
You can use GTKSharp on ubuntu using mono. (it is used much more on mono then on .net)
However if you don't want to use .net/mono then you can use GTK+ from c, c++, python and many other languages.
A GTK+ TreeView can be used as a grid:
A
3