G
Guest
The splitter control walkthrough example corrupts the contents of windows (belonging to other processes) that are behind the window containing the splitter control. For example, if I compile the splitter walkthrough example code, and run the program, and move the splitter back and forth, if I then exit the program the contents of the Visual C# .NET code editor (which was behind the splitter program window) are all corrupted
There seems to be a general problem that if you have a control on a form and move it at run time eg by setting the Left property of the child control to some value, when the control is invalidated it actually leaves artifacts on other windows belonging to other processes
I am wondering if when a child control is invalidated, it gets repainted without the normal Win32API BeginPaint/EndPaint bracketing since it is just a child control and not the form itself....(thinking out loud
Is this a known issue and is there any workaround?
There seems to be a general problem that if you have a control on a form and move it at run time eg by setting the Left property of the child control to some value, when the control is invalidated it actually leaves artifacts on other windows belonging to other processes
I am wondering if when a child control is invalidated, it gets repainted without the normal Win32API BeginPaint/EndPaint bracketing since it is just a child control and not the form itself....(thinking out loud
Is this a known issue and is there any workaround?