R
Reiner Obrecht
I save my old cliping region and do some work with a new clipping region.
When I want to switch back I get another clipping region contents in my
Graphics object than before. The saved region in "oldClip" is still correct.
Region oldClip = g.Clip;
g.Clip = new Region(path); // new region is perfect
// several drawings which are correct ....
g.Clip = oldClip; // it happens here
Has anyone an idea, where the problem can come from? Thanks for helping.
When I want to switch back I get another clipping region contents in my
Graphics object than before. The saved region in "oldClip" is still correct.
Region oldClip = g.Clip;
g.Clip = new Region(path); // new region is perfect
// several drawings which are correct ....
g.Clip = oldClip; // it happens here
Has anyone an idea, where the problem can come from? Thanks for helping.