-2

I use Alpha Blended Windows (https://www.codeproject.com/Articles/20758/Alpha-Blended-Windows-Forms), But when dragging on the form or when double click on the form, Cause controls to disappears or flash. How to fix?please?Thank you

Please see the gif of the problem

Community
  • 1
  • 1
james max
  • 7
  • 1

1 Answers1

0

You can set the following field to true. (By default, options are set to false)

As per their documentation:

bool EnhancedRendering

If true when the form is dragged, the foreground window will be drawn to the background window and then hidden. This prevents any visual disparity between the two forms.

this.EnhancedRendering = true;
Gauravsa
  • 5,551
  • 1
  • 13
  • 23
  • I set EnhancedRendering to false, It's ok! Thank you very much for your tips. You were a great help to me!^_^ – james max Oct 28 '18 at 01:31