The new version of Rad Studio (XE2) includes a feature called VCL Styles. This functionality allows you to apply a skin (theme) to any VCL Form application. For more information, you can check the offical documentation, VCL Styles Overview.

learn more… | top users | synonyms

2
votes
0answers
71 views

Delphi XE2 VCL styles not drawing TabSheets correctly

I am working on a large delphi application with a tonne of legacy code that is being converted to xe2. I am implementing the vcl styles and for the most part there is no problem. However on some ...
1
vote
1answer
71 views

How can the forms of my application use different Vcl Styles?

How can the forms of my application uses different Vcl Styles? For example : form1 -> ruby form2 -> carbon
1
vote
1answer
68 views

How to color the background of a TComboBox with VCL styles enabled

I am trying to color the background of a TComboBox with VCL styles enabled like the way its described in this article but its not working. ...
0
votes
1answer
57 views

painting background from TSeStyleFont

i'm trying to paint vcl style background from TSeStyleFont like in Bitmap Style Designer .. is there any way to draw the background ? i have make a try : - draw the object first in a bitmap using ...
2
votes
1answer
129 views

How do we detect and change styles at runtime? [duplicate]

It's cool that Delphi XE3 and below have styles for our applications. But I've noticed that we can mark as many styles as we want and them choose which of them to use as default. It means that we ...
3
votes
1answer
134 views

Delphi XE2, vcl styles recreating window handle

After applying a new style at runtime the MainForm of my application creates a new window handle – is there any way to stop this or reassign the Handle as I a getting a tonne of the following error: ...
4
votes
1answer
205 views

Delphi TSplitter flickering issue

I am using Delphi with VCL styles enabled and I would like to change the color of the TSplitter for my form. I override TSplitter.Paint in an interposer class to paint a darker color than the default ...
7
votes
1answer
166 views

Changing Delphi styles at runtime doesn't allow dropping files to the form

I have the following procedure that allows droping files from windows, the dropping works just fine but when I change the style at runtime using (TStyleManager.TrySetStyle(styleName)), the form accept ...
2
votes
1answer
245 views

Where do VCL styles come from?

In my programming team we all use Delphi XE2 Professional. We just figured out that on different computers different numbers of VCL styles are available. Where do VCL styles come from? Do I have to ...
1
vote
0answers
159 views

VCL Styles with rounded corners

Some VCL Styles (Delphi XE2) has rounded corners. How can I change one style for example Metro Blue (not rounded) to rounded ?
5
votes
1answer
166 views

TSaveTextFileDialog and Vcl Styles

I'm using the TSaveTextFileDialog component in Delphi XE3, but when a Vcl Style is enabled the encoding combobox is draw using the current vcl style. How i can fix this, I mean disable the vcl ...
4
votes
1answer
332 views

Styling only one VCL component in Delphi

I know, that it's possible to disable custom styling for components, but how can I enable styles for only one component class? For example leave the whole form and all components on it unskinned, and ...
2
votes
1answer
122 views

Skinning of TOpenDialog and TOpenPictureDialog with VCL styles

Is it possible to skin the TOpenDialog and the TOpenPictureDialog with VCL syles?
1
vote
1answer
195 views

Disable a style in VCL application

I am adding the a VCL style into my application but am also giving the users an option to turn this off but I cannot figure out how to do this globally at runtime. Setting ...
3
votes
1answer
305 views

Changing font of TActionMainMenuBar when using Vcl styles

Normally one could change the font of a TActionMainMenuBar or TMainMenu like this: Screen.MenuFont.Name := 'Calibri'; When using Vcl styles this isn't possible any more if a StyleHook is ...
1
vote
1answer
491 views

Is it possible to modify VCL styles at runtime?

I have a TabControl in which each tab represents a distinct set of data. My application uses VCL Styles, and thus setting OwnerDraw to True does not lead to OnDrawTab being called. I was wondering if ...
2
votes
1answer
624 views

How to manually include a VCL Style in my application?

I have an application which uses conditionals to be able to compile it either as a VCL Forms Application or as a Windows Service Application in Delphi XE2. However, since I have manually altered the ...
2
votes
0answers
321 views

Delphi TListView DoubleBuffered doesn't work if you are using Styles

When you enable application styles and set TListView's DoubleBuffered property to True, it doesn't work. When you update listitems and their subitems, it flickers. Does anyone have a solution for ...
3
votes
1answer
91 views

No images in TListview header when using VCL Styles

When using a TListview in vsReport ViewStyle with any VCL Styles activated, the images in the header are not shown. Unsing the classic Windows style, the images appear. (The way to show the images I ...
1
vote
1answer
499 views

Delphi XE2 VCL styles, How to disable VCL styles on TBitBtn?

I am using the new VCL styles system in Delphi XE2 and its work fine but on one Form I want exception. This Form contains number of TBitBtn control and each TBitBtn control has its own Font colour ...
1
vote
1answer
301 views

Right to left ComboBox in Delphi XE2 with styles

I have problems when I use ComboBox in Delphi XE2 with Custom styles(Emerald Light Slate) and this property: BiDiMode := bdRightToLeft; Style := csDropDownList; That ComboBox without Custom style: ...
1
vote
1answer
466 views

How to apply a vcl style hook to a particular component of a form?

I'm using the vcl style hook of the answer to this question close button of a tabsheet not supporting vcl styles and is working fine, but the close button is draw in all the TPageControl components of ...
3
votes
1answer
380 views

TMainMenu is not shown when the vcl styles is removed from the NC Area

I'm using this code to remove the vcl styles from the non client area of a form. type TFormStyleHookNC= class(TMouseTrackControlStyleHook) protected procedure PaintBackground(Canvas: ...
0
votes
1answer
164 views

Shift in the right of last item of the menu

Delphi Xe2U4. Main menu items: File, Option, Help (name: HelpMenuItem). 2 buttons. Use StyleManager Xe2 (in project option enabled xe2 themes, and default set 'Metro Blue'). Procedure ...
7
votes
2answers
529 views

TDateTimePicker VCL Styles glitch in XE2 that only happens on Windows Classic Theme

I guess this is yet another reason why VCL styles are not ready to be really used. TDateTimePicker control looks fine without VCL styles. Turn on any vcl style, and I get this appearance: I can ...
3
votes
0answers
284 views

How do I write a TDBCtrlGrid VCL Style custom class?

There are lots of questions here about XE2 VCL Styles and custom colors for Buttons, Panels, edits, etc, and VCL Styles. As much as I wish the existing questions covered it, they don't... So DB ...
4
votes
1answer
363 views

How do i apply to VCLStyle for TLinkLabel

I tried to apply VCLStyle for TLinkLabel. Sadly, I can not display underline(sentece of A Tag) TLinkLabel.Caption := 'Sma<a>pl</a>e'; How do I solved this ? To solve this problem, but ...
18
votes
1answer
669 views

What can I do about maximized, styled windows, which show their borders on adjacent monitors?

On a multi-monitor system, a "blank" VCL application maximizes fine, but the same application with styles enabled (and one chosen as default) maximizes incorrectly. What I'm seeing is the right-hand ...
4
votes
1answer
1k views

close button of a tabsheet not supporting vcl styles

I have used the code provided in this example How to implement a close button for a TTabsheet of a TPageControl to draw a close button to each tabsheet of a pagecontrol and I have replaced ...
5
votes
2answers
375 views

Delphi XE2, how to keep form ON TOP after changing VCL styles

I encountered a weird issue with XE2: I'm using HWND_TOPMOST with SetWindowPos to set my form on top, but if I switch VCL styles at runtime, the window isn't topmost anymore, and unsetting/re-setting ...
2
votes
1answer
392 views

How i can use the native progressbar when the vcl styles are enabled?

I need use a progress bar with the pbstMarquee style, I read this question and the accepted answer works fine, but now i need draw the native progress bar How i can use the native progressbar ...
3
votes
1answer
229 views

Can the Delphi TTaskDialog be made to use VCLStyles?

Can the Delphi TTaskDialog be made to use VCLStyles?
1
vote
1answer
111 views

How detect when a vcl style is changed?

I use several WinAPi functions which needs the Handle of the form in order to work, due which the handle of the form is recreated when the vcl styles is changed many of the calls to these functions ...
5
votes
2answers
1k views

Style properties for TDateTimePicker

A TDateTime picker is a ComboBox where the drop-down list is replaced with a calendar. I use XE2 VCL Styles and changing style does'nt affect TDateTimePicker Color & Font Color. I have change the ...
1
vote
2answers
350 views

Delphi: Vcl Styles & Drag-n-Drop

I'm a Delphi-programmer and I have a question. I create a form with TStyleManager and I use skins on my application. But I want to use Drag-n-Drop files in my app too. How I can realize this? I have ...
4
votes
1answer
1k views

How i can change the color of a TPanel with the Vcl Styles enabled?

I need to change the color of a TPanel when the Vcl styles are enabled, I tried using and modifying the code listed in this article Changing the color of Edit Controls with VCL Styles Enabled but is ...
2
votes
1answer
503 views

VCL Styles possible bug with drawing scrollbars

I have a pagecontrol in the center of my main form (form1 in my image), and I want to open other forms docked into the pagecontrol. Because I have many controls on my child form, I need both vertical ...
5
votes
1answer
1k views

DevExpress ExpressSkins or VCL Styles?

I am working on a big legacy application written in Delphi. Most of the components are VCL and DevExpress QuantumGrid components. I would need to update the UI to support various styles and a more ...
3
votes
1answer
568 views

Incorrectly drawn themed checkbox in TVirtualStringTree

Checkbox handling in version 5.0.0 of VirtualTrees.pas appears broken when toThemeAware is enabled. Nodes that are csUncheckedNormal are drawn as checked + hot. To correctly paint an unchecked, ...
10
votes
1answer
358 views

How I can apply a vcl style to a TPopupmenu?

I'm using the vcl styles in a Delphi XE2 application, but when i popup a TPopupmenu this is show using the native windows look and feel, exist any way to apply the vcl style colors to the TPopUpMenu? ...
1
vote
1answer
849 views

Set variable Style on create / show form in Delphi XE2

I'm trying to create a form with a user selected style saved to an ini file (JvFormStorage and JVIniFileStorage). The problem I have is if I put my code in the OnCreate it doesn't work, In the OnShow ...
2
votes
1answer
676 views

Delphi XE2 styles painting

I am having trouble with incorrectly painted corners when drawing VCL-styled window elements. On styles that have rounded corners, I get a white background in the space between the control's bounding ...
3
votes
1answer
865 views

TMonthCalendar & Delphi Styles (Delphi XE2)

TMontCalendar seems to be a Windows wrapper so it can't be affected by the new VCL Styles, do you know a solution for it ?
2
votes
2answers
1k views

Delphi XE2 VCL styles, remove a style or disable a class skinning from a TLabel

Using XE2 VCL styles, I'd like to disable the skinning for TLabel (or property sfTextLabelNormal) I've tried all kind of solutions from other questions, like using Engine.UnRegisterStyleHook, but it ...
3
votes
1answer
271 views

VCL-Styles menu hotkey inconsistency

I've noticed that when VCL-Styles is enabled, items in menu will be selected with hotkeys even without Alt-key is pressed. This interferes with the rest of my user interface and I find it very ...
2
votes
1answer
315 views

Custom paint method in TSplitter doesn't use Vcl Styles colors

I'm using the code posted in this link TSplitter enhanced with grab bar , to draw a grab bar in a splitter control, procedure TSplitter.Paint; var R: TRect; X, Y: integer; DX, DY: integer; ...
9
votes
3answers
6k views

Delphi XE2 VCL styles tutorial - how to change the style at runtime

Is there a good VCL Styles tutorial where we see how to dynamically (in run time) load/change the style ?
6
votes
1answer
539 views

Is VclStyle Bug ? TProgressBar.Style := pbstMarQuee Does not work

Is VclStyle Bug ? T^T I tried to find BugFix list(http://edn.embarcadero.com/article/42090/) but I can't File > New > VCL Application TProgressBar put main form >TProgressBar.Style := pbstMarQuee ...
4
votes
2answers
664 views

combobox doesn't use vcl style highlight color.

I'm using a combobox with the vcl styles enabled, but when i run the application the highlight color used by the combobox is the windows highlight color and not of the vcl styles. How i can fix ...
3
votes
2answers
608 views

VCL-Styles embedded in dll?

How do I embed Delphi XE2 VCL-Styles in a dll? The Application - Appearance page is not visible in project settings for DLL-projects. I tried defining them in a rc-file included with a $R directive ...

1 2