Im Designing a Form with Delphi 2009, and Im trying to figure out the TPageControl element. Im trying to make separate dialogs for each tab. I can make the TTabSheets, and I can place my elements on the TabSheets, but my problem is that they are barley visible, as the default background for a TTabSheet appears to be white. Ive tried to place a panel on the TabSheet, but for whatever reason, the panel always appears behind the TabSheet. So my question: Is there any way to change the color of a tab sheet to the standard windows beige, or is their a way to place a TPanel on the tab page, accomplishing the same goal?

link|improve this question

When I see a dialog box using a tab control (with tabs) in which the pages are clBtnFace coloured, I think, "Oh, that's an old, ugly application, written long before the advent of themes". But if I understand you correctly, you do not want to use the tab control as a 'normal' tab control, with the tabs visible. Instead, you want to have several 'pages' (but no tabs!) in a dialog box, don't you? Maybe you want to add 'Next' and 'Back' buttons to the bottom of the dialog? In other you want to create a wizard? – Andreas Rejbrand May 6 '11 at 0:29
@Andreas You have certainly misunderstood, although i admit i am very new to this, and probably not explaining correct. – Ben313 May 6 '11 at 8:02
feedback

2 Answers

up vote 11 down vote accepted

Set the style property to tsFlatButtons
The background ~colour~ will revert to beautiful clBtnFace

link|improve this answer
+1 I didn't know that. Is that because tsFlatButtons is old school? – David Heffernan May 5 '11 at 23:22
Well, you can also set it to tsButtons. (The options are tsTabs, tsButtons, and tsFlatButtons.) This will disable visual theming of the tab control altogether. Themes only work for normal tabs. – Andreas Rejbrand May 6 '11 at 0:24
+1 for this trick. Should really be -1 for describing clBtnFace as beautiful (not in XP Luna blue anyway) – Gerry Coll May 6 '11 at 0:52
+1, I just found this out recently while maintaining some older application for which we cannot enable theming. – Roald van Doorn May 6 '11 at 12:44
feedback

The standard Windows colour for a tab sheet is white. That standard came into being when XP themes were introduced. If a user switches back to Windows Classic then they will get a grey background. [You do mean grey rather than beige don't you? Beige would be truly vile!]

A panel inside a tab sheet can never be behind the page since it is inside the page. What is actually happening is that the panel is being drawn transparently so that the standard tab sheet colour prevails.

link|improve this answer
@David, can the color be changed into say blue?, or are we stuck with default colors? Oh and +1 for the structure pane. – Johan May 5 '11 at 21:47
@Johan I'm sure with some effort the colour can be changed. You'd need to hack the page control and possibly some other controls, I'd guess. The point I'm trying to make is that if OP wants the standard behaviour then it is white. – David Heffernan May 5 '11 at 21:49
@David, I was asking it for myself :-( – Johan May 5 '11 at 22:00
2  
To make the panel use its own background, set ParentBackground := false on the TPanel. – Andreas Rejbrand May 6 '11 at 0:27
1  
Sounds like a job for a non-ms-windows-common-controls-tabsheet. – Warren P May 6 '11 at 19:28
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.