码迷,mamicode.com
首页 > 其他好文 > 详细

unigui多页签UI框架

时间:2014-07-02 18:48:09      阅读:224      评论:0      收藏:0      [点我收藏+]

标签:os   cti   for   io   ui   ar   

 

procedure TMainForm.openForm(Caption, FormClassName: string);
var
i: integer;
sheet: TUniTabSheet;
begin
for i := 0 to page.PageCount - 1 do
begin
if page.Pages[i].Caption = Caption then
begin
page.ActivePageIndex := i;
exit;
end;
end;
sheet := TUniTabSheet.Create(Self);
sheet.Closable := True;
sheet.Caption := Caption;
sheet.PageControl := page;
FCurrentFrame := TUniFrameClass(FindClass(FormClassName)).Create(Self);
FCurrentFrame.Align := alClient;
FCurrentFrame.Parent := sheet;
page.ActivePage := sheet;
end;

unigui多页签UI框架,布布扣,bubuko.com

unigui多页签UI框架

标签:os   cti   for   io   ui   ar   

原文地址:http://www.cnblogs.com/hnxxcxg/p/3819877.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!