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

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...