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?
|
feedback
|
|
Set the style property to tsFlatButtons | |||||||||
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. | |||||||||||||||
feedback
|
clBtnFacecoloured, 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