The title bar Tabs of Delphi StyleControls

RAD Studio 10.3 test √

The OnClick event of the child item under Tabs under the control scStyledForm [CxPageControl panel switching]

procedure TForm1.scStyledForm1Tabs0Click(Sender: TObject);
begin
  cxPageControl1.ActivePageIndex := 0;// 切换cxPageControl控件下的活动面板【0表示左边第1个面板】
end;

procedure TForm1.scStyledForm1Tabs1Click(Sender: TObject);
begin
  cxPageControl1.ActivePageIndex := 1;// 切换cxPageControl控件下的活动面板【1表示左边第2个面板】
end;

Style :
Insert picture description here
cxPageControl Hidden tags :
Insert picture description here
A little bit of notes recorded in the study, so that you can read them later.

Guess you like

Origin blog.csdn.net/qq_44111597/article/details/108236151