2021-10-04 07:35 AM
I want to design a modal window to block the screen. Based on the different cases it will display different widgets. I want only to display the widgets without modal window background. But it looks like that the modal window class needs a background to draw its children. Any suggestion?
Thanks in advance.
Solved! Go to Solution.
2021-10-04 11:51 AM
Hi, modal window need background and you should add an image to be displayed, It is not designed to draw every widget, it is used for messaging...
Another way is add transparent image and then add your widget, but it wastes your resources.
2021-10-04 11:51 AM
Hi, modal window need background and you should add an image to be displayed, It is not designed to draw every widget, it is used for messaging...
Another way is add transparent image and then add your widget, but it wastes your resources.
2021-10-04 12:40 PM
Using a transparent image as background may work in my case. Thanks.