Reputation: 99
Even "DoubleBuffered"
property is True
, when I restore minimized form, my form flickers.
But this issue occurs only if "BorderStyle"
property is bsNone
.
Any type of "BorderStyle"
besides "bsNone"
fixes my problem.
So, how can I prevent form flicker when I use "bsNone"
?
PS: I minimize my form with my custom button which executes Application.Minimize
command.
Upvotes: 1
Views: 210
Reputation: 99
I have fixed my problem.
Here is what I do:
"TransparentColor"
property."TransparentColorValue"
value to "clBackground"
.Also I have removed the panel which I used it as the titlebar. Instead of that, I have inserted TTitleBarPanel
to my form.
PS: I use C++ and Delphi as front-end languages; C++, JavaScript as back-end languages.
Upvotes: 1