Hide/Show window #631
Unanswered
OsakiTsukiko
asked this question in
Q&A
Replies: 2 comments 5 replies
-
For now, there is no API that do that, but in Windows, you can use Win32 APIs to manipulate window, something like this: // Show a WebView window
webui_show_wv(win, "index.html");
// Get the HWND of the WebView window
HWND hwnd = webui_win32_get_hwnd(myWindow);
// Do anything with HWND using Win32 APIs . . . |
Beta Was this translation helpful? Give feedback.
1 reply
-
Yes, |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Is there a way to hide/show window repeatedly? i know there is setHide but from what I understand that is a flag set before first show. There is also close which from my understanding should not free anything (unlike destroy) but for me it crashes the app (zig).
Beta Was this translation helpful? Give feedback.
All reactions