Jump to content

TUniPanel - Z-Order Problem ...


erich.wanker

Recommended Posts

Hello,

 

If a component of type:

  • uniDBGrid
  • uniPanel (collapsible=true
  • uniPageControl
  • ...

 

is BEHIND a uniPanel - then parts of the behind controls are still visible ...

 

 

Any suggestions or workArounds possible ?

 

Thank you

Link to comment
Share on other sites

.. as dirty workaround i put all controls in the unvisible area ...

var i:Integer;begin
for i:=0 to self.ComponentCount-1 do
  begin

    if self.Components[i].ClassName = 'TUniPanel' then                                                           
    (self.Components[i] as TUniPanel).Left:=-4000;
...
..
.
Link to comment
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
×
×
  • Create New...