Jump to content

UniFrameContainer Control


CastleSoft

Recommended Posts

It would be nice if there was a UniFrameContainer control.

 

This would save having to do the Create/Parent/Assign/etc...

 

The UniFrameContainer could be placed on PageControls or in the case when you want something like:

 

You have a LONG page with say 3 or more UniFrameContainers down the page:

 

UniFrameContainer1

UniFrameContainer2

UniFrameContainer3

 

This allows design in multiple segments/Frames flow down the page for the new "1-Page" look.

 

Andrew

 

** Edit ** Multiple Panel's with UniFrames example:

 

procedure TMainForm.UniFormShow(Sender: TObject);

var frame1 : TUniFrame1;

      frame2:  TUniFrame2;

begin

    frame1 := TUniFrame1.Create(self);

    frame1.Parent := UniPanel1;

    frame1.Align   := alClient;

 

    frame2 := TUniFrame1.Create(self);

    frame2.Parent := UniPanel2;

    frame2.Align   := alClient;

end;

post-14-0-98988400-1412145412_thumb.png

post-14-0-51419700-1412145496_thumb.png

Link to comment
Share on other sites

×
×
  • Create New...