V
V
vovkaooo12016-06-14 13:17:52
C++ / C#
vovkaooo1, 2016-06-14 13:17:52

Is there a form constructor for c?

Here for c# there is a program form designer. (windows forms application), but is there such a function for si. Or how do you make the form to the program?

Answer the question

In order to leave comments, you need to log in

4 answer(s)
M
MiiNiPaa, 2016-06-14
@vovkaooo1

Usually, if I write in C, the graphical interface is the last thing the program needs, right after managing all types of coffee makers. If you really want to, either MSDN and draw a window with controls manually, or GTK + and Glade as a visual editor.

G
GavriKos, 2016-06-14
@GavriKos

I’ll add a little and correct MiiNiPaa .
The C language, as well as C ++, does not contain any means for working with forms in its standard.
Accordingly, you need to use a third-party library. For example Qt. Or wxWidgets. Or what MiiNiPaa suggested . You can even take WinAPI. And then in this framework, see if there is a form designer. For the most popular - definitely there.

O
OnYourLips, 2016-06-14
@OnYourLips

It is not customary to write GUIs in C.
If you made a mistake and meant the C ++ language, then the Qt framework is popular.

R
Rou1997, 2016-06-14
@Rou1997

Если не просят именно на нем делать, то никак не делаю, GUI на Windows не надо делать ни на Си, ни на C++, Qt и т.п. гораздо хуже, чем C#, еще для C++/CLI (не C++) есть WinForms, тот же, что и в C#, но все равно хуже за счет IDE и др.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question