Answer the question
In order to leave comments, you need to log in
C# How to implement window resizing without flicker?
How to implement window size measurement with FormBorderStyle=None property without flicker?
The only way without full flickering that I found on the Internet is:
protected override CreateParams CreateParams {
get {
CreateParams parms = base.CreateParams;
parms.Style |= 0x40000;
return parms;
}
}
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question