Possible Duplicates:
Good C++ GUI library for Windows
How do I create a GUI for a windows application using C++?
Can I use C++ to create a windows GUI application? (it seems like it's only good for Win32 console commands) thanks
|
|
Can I use C++ to create a windows GUI application? (it seems like it's only good for Win32 console commands) thanks
|
|||
|
|
closed as exact duplicate by ChrisN, CookieOfFortune, Henk Holterman, GMan, Bastien Léonard Jul 18 at 20:31 |
|
|
Surely you could use C++ to create a windows GUI application. There are a lot of frameworks for that - MFC, Qt, WTL and more. But you should consider using C# and .NET to create GUI. It is sad for me as for C++ developer but it seems that WPF is more appropriate for creating GUI application. It has built-in hardware acceleration, rich tool sets and more. |
||
|
|
|
|
Yes. You use a different program entry point, Then, it's just a matter of creating your windows, controls, etc., and managing the Windows message loop. You can use the raw C-compatible Win32 API, or as others have mentioned, there are a number of toolkits designed to make your life easier. Some are object-oriented, some are cross-platform, some are both, and they all have their own quirks. |
||
|
|
|
|
Sure, you can write straight to the win32 api if you feel like torturing yourself or you can use a framework like Microsoft Foundation Classes (MFC) or a more modern one like QT (recently relicensed under LGPL) |
||
|
|
|
|
Sure you can. Microsoft has MFC which is a C++ GUI framework for Windows. There's others, e.g. Qt. And nothing stops you from calling the win32 C api from C++. |
||||||||
|
|
|
Yes, but you can use thirdparty libraries like QT. You also can use the Windows API to develop for Windows. |
||
|
|
|
|
Another great framework for creating Windows application with C++ is WTL: |
||
|
|
|
|
Yes. And there are several C++ class libraries that can help you, like MFC, QT, and wxWidgets. Pretty much all the Windows GUI apps you use were written using C++, either directly to the Win32 API or using a class library. |
||
|
|