I want, if i check that, then indicator was shown in new panel, if i uncheck, in the same price-panel.
However, that seems not trivial.
I've tried this :
//setdefaults -> myShowInNewPanel=false;
if (State == State.Configure)
{
if (myShowInNewPanel)
{
IsOverlay = false;
Panel = 0;
}
}
that is the problem at this moment.

Comment