Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
2answers
80 views

What Uxtheme function I must use to get the default size of the minimize, Maximize and close buttons?

I'm using the DrawThemeBackground function to draw some system elements on a canvas, And I need draw the title buttons of a form, the only part that i missed is how i can get the default sizes of the ...
5
votes
1answer
206 views

How to change theme DrawThemeTextEx font color?

i am using DrawThemeTextEx to draw text. i am trying to draw it in a particular color using the crText COLORREF member of DTTOPS structure: procedure DrawThemeText(dc: HDC; text: WideString; font: ...
3
votes
0answers
105 views

ListView with Windows 7 column header style [closed]

Possible Duplicate: NetUIHWND and DirectUIHWND I've seen that Windows 7 introduced a new listview style which even differs from the Windows Vista one. Columns have a fade-to-white and ...
2
votes
2answers
510 views

Enabling XP visual themes / visual styles kills performance

While trying to modernize the appearance of an old C++Builder / Delphi application, I enabled visual themes (visual styles) and was surprised at just how much of a performance hit themes added. For ...
2
votes
4answers
3k views

How to get size and position of window caption buttons (minimise, restore, close)

Is there an API call to determine the size and position of window caption buttons? I'm trying to draw vista-style caption buttons onto an owner drawn window. I'm dealing with c/c++/mfc. Edit: Does ...
2
votes
2answers
1k views

How to parse an .msstyles file?

I need to extract some bitmaps from an .msstyles file (the Windows XP visual style files) and I'm not sure where to start. I can't seem to find any documentation on how to do it, and the file format ...
1
vote
1answer
166 views

How to fix a delayed declaration in UxTheme

In Delphi XE UxTheme unit there is the following declaration function DrawThemeTextEx(hTheme: HTHEME; hdc: HDC; iPartId: Integer; iStateId: Integer; pszText: LPCWSTR; cchText: Integer; ...
1
vote
2answers
1k views

How do I give the RichTextBox a flat look?

I'm working on a WinForms SmartClient application, which uses a lot of RichTextBox controls - some in place of the regular TextBox for various reasons. Unfortunately the RichTextBox draws the ugly ...
0
votes
1answer
116 views

Office COM add-in, dialogs don't have the luna/aero theme (they look like Windows 98 classic look)

I have an addin for Office 2007 which adds a toolbar with some buttons and handlers for their OnClick events. When the user clicks on the buttons, some dialogs show. But those dialogs have the dated ...
0
votes
1answer
214 views

Disable themed Window Border

In Windows XP's CMD, the Luna border isn't applied to it. Is it possible to do it in a similar way in Visual C# Winforms, for an application? I just wonder how it's done, of course I am not going to ...
0
votes
1answer
501 views

Why does OpenThemeData(pParent, L“TEXTSTYLE”) fail on XP?

I'm using the theme library to draw some text which works absolutely fine on Windows Vista - however, on Windows XP the returned HTHEME is NULL. This is the code I'm using: HTHEME hTheme = ...
0
votes
1answer
469 views

Can you turn off visual styles/theming for just a single windows control?

My Windows Forms application uses the following standard line of code so that visual styles (theming) is enabled for the entire application... Application.EnableVisualStyles(); ...which works just ...