How to program C# on Linux using Glade?

Asked

Viewed 152 times

-2

Good evening guys. I’m starting Linux using the Mint version. I discovered the Glade app, which programs graphical interfaces. I’ve figured out how to interface but I’d like to know how to use C# on it.

So far I just installed the application using:

sudo apt-get install glade

a onde eu parei

1 answer

1


First of all, two concepts must be clear:

Glade is a GUI builder for GTK+. 1

GTK+ is a multiplatform Toolkit for creating graphical interfaces. 2

Basically Glade creates an XML file, which should be read by Gtkbuilder.

GTK+ is implemented in C, with connections/links to other languages, are maintained by other projects, such as Gtk#/Mono.

So if your goal is to create a Gtk interface, using the C#programming language, this is the one you should turn to.

  • Thank you, that’s what I wanted to know.

Browser other questions tagged

You are not signed in. Login or sign up in order to post.