Delphi: what component is (TDockTabSet ?) and how to work with it?
Is this TDockTabSet for Delphi (highlighted)? Or an other component? Ho开发者_运维百科w to work with it. I want to use it instead of TPageControl but with the same functionality - like Tab Sheets.
One more picture: http://www.tmssoftware.com/site/asg58.asp
Thanks!
That's not TDockTabSet
. As part of the Windows GUI it's clearly not a Delphi component. What's more it is quite different in functionality.
What you have highlighted is a page control with the tabs at the bottom. In Delphi terms it is TabPosition=tpBottom
.
There is a Delphi control that looks like it: TTabSet with TabPosition = tpBottom. It will give you triangular tabs like in the picture. It is actually used by the RAD Studio and Delphi IDE too (below the editor/designer).
Great example here Using the TDockTabSet component
精彩评论