Jump to content

vertical scrollbar


tgb.amaro

Recommended Posts

  • 10 months later...
4 minutes ago, Sherzod said:

Hello,

I think you can simply use this property of your frame:


  ...
  // create
  YouFrame.AutoScroll := True; // or at designTime
  ...

 

Inside frame I use page control and multiple tab sheet, problem is tab sheet can't auto resize the frame.

Link to comment
Share on other sites

2 hours ago, Masteritec said:

Actually, Tab Sheet can add Autoscroll option.

TabSheet - Scrollbar Issue.zip

UniTabSheet2.ClientEvents.UniEvents - > beforeInit:

function beforeInit(sender, config)
{
    config.autoScroll=true;
}

or

procedure TMainForm.UniFormCreate(Sender: TObject);
begin
  UniTabSheet2.JSInterface.JSConfig('autoScroll', [True]);
end;

 

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...