-1

I don’t have Visual Studio for C++ GUI(Because I don’t want to install such a big thing on my pc). And I don’t have any problem with working with some really simple code editor like Sublime Text or Code Blocks IDE for console C++(of course). But the problem arises when I wanna make GUIs or Graphical User Interfaces.

I couldn’t find any resource¹ anywhere for how to handcode² GUI without any GUI Designer like Visual Studio’s or Code Blocks’.

resource: Any website, video etc.

handcode: By this, I mean coding a GUI without any GUI Designer.

Found the Solution

I found that I can use the graphic designer included in SharpDevelop IDE, which I can use for making the GUI, but for the intellisense, I can use VSCode with the C/C++ extension.

SharpDevelop is primarily made for .Net, so I can use it for .Net GUI also.

InfoDaneMent
  • 326
  • 3
  • 18

1 Answers1

0

You can use Linux and g++ command for compiling cpp files.

You can choose any editor programs like notepad++ or notepad.

This question is already answered How do I build GUI with c++

  • Sir, I know how to do that but what problem I have is how to make GUIs(Graphical User Interfaces) with C++ **_without_** any designer that helps you to make a GUI without coding – InfoDaneMent Oct 14 '21 at 06:05
  • 1
    you can creat your own .h library c++ works on low level, please upvote my answer here is example of doing GUI low Level programming https://www.codeproject.com/Articles/1225196/Create-Your-Own-Kernel-In-C-2 – Irakli Shalamberidze Oct 21 '21 at 16:15