How do i call ShowDialog, without blocking every Window in the Program. #367
Answered
by
canton7
BinarySignaling
asked this question in
Q&A
-
How do i use ShowDialog and not blocking every other window? At the moment if i call ShowDialog it blocks every other window that is open in the Program. If I close the Dialog all the Windows are working fine. Thank you in advance. |
Beta Was this translation helpful? Give feedback.
Answered by
canton7
Nov 4, 2022
Replies: 1 comment 2 replies
-
Use |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
BinarySignaling
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Use
ShowWindow
instead ofShowDialog
. The point of a dialog is that it's modal, and blocks interaction with other windows.