Imgui: Single window

Created on 14 Feb 2019  ·  3Comments  ·  Source: ocornut/imgui

I want to use imgui for my simple windows application, I want one window with several controls (bottons, etc)
Is this possible to create such window with imgui?
I don't want one big window with imgui subwindows but one imgui window with controls

NOT like this:
image

I want to build desktop app

Most helpful comment

That's not a question related to Dear ImGui. Look up for WS_POPUP WS_EX_TOOLWINDOW flag in Win32 api.

All 3 comments

Just create an OS window that doesn't have OS decorations, then create an imgui window that fills the OS window using SetNextWindowPos(ImVec2(0,0));SetNextWindowSize(io.DisplaySize);`

" OS window that doesn't have OS decorations"
How can I do that on Windows?
via CreateWindow?

That's not a question related to Dear ImGui. Look up for WS_POPUP WS_EX_TOOLWINDOW flag in Win32 api.

Was this page helpful?
0 / 5 - 0 ratings

Related issues

bizehao picture bizehao  ·  3Comments

bogdaNNNN1 picture bogdaNNNN1  ·  3Comments

Folling picture Folling  ·  3Comments

DarkLinux picture DarkLinux  ·  3Comments

mkanakis picture mkanakis  ·  3Comments