Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
2answers
292 views

Programming In C + Win API: How To Get Windows 7 Look For Controls?

I am programming strictly in C and WinAPI, no C++ or C#. I am a beginner and just learning to draw controls etc. The thing is that when I create Windows or other controls like Command Buttons, they ...
6
votes
1answer
296 views

Border Color of Controls Using VisualStyles

Microsoft's visual styles for winforms have always befuddled me. I am trying to have a Panel sit next to a TreeView and just have the same VisualStyle border. As you can see, the TreeView border ...
5
votes
2answers
303 views

TabRenderer with no visual styles enabled?

I want to draw a custom TabControl with custom functionality. To do this, i inherited the Panel class and overrided OnPaint method to draw with TabRenderer class. The problem is that TabRenderer ...
3
votes
2answers
2k views

How do I draw a 3D border using visual styles?

I can draw a 3D border using ControlPaint.DrawBorder3D, but I get the 'Windows Classic' 3D border. I want to draw the current theme's 3D border - in the default XP theme, this is a 1px blue or gray ...
2
votes
0answers
39 views

How to use .NET TextBoxRenderer with TextBoxState.Hot to draw a hot text box?

i am trying to use TextBoxRenderer to render a "hot" text box: TextBoxRenderer.DrawTextBox(e.Graphics, rectangle, TextBoxState.Hot); except that it doesn't work, it doesn't render the text box as ...
2
votes
1answer
293 views

How to create a Flat Button in WinAPI with visual style

I wanted to create a flat image push button like the Windows 7 mute button. Here's the picture: flat button When mouse hover it(display border): flat button hover I tried to use BS_FLAT style, ...
2
votes
2answers
201 views

How do you set a custom theme for a .NET application?

Much as the title says, I am wondering how to style a program like Photoshop CS4 or Autodesk Maya 2011. These programs are styled to where the UI looks completely custom. Right now I am using C# to ...
2
votes
2answers
399 views

How can I enable Vista/Win 7 theming/style for a ToolTip control?

In Windows Vista and Windows 7, ToolTips have a new visual style or theme, they are shiny grey metallic. How can I enable the new style for a ToolTip control? Some controls, like ListViews and ...
1
vote
1answer
757 views

How to apply visual style for Windows classic theme in Win form using C#

I am using VisualStyleRenderer for my Windows Application, it works perfectly for Windows XP theme but it doesn't work for Windows Classic theme. Can anybody suggest me how will I able to make ...
1
vote
2answers
492 views

How to make Edit1.Font.Charset work with themes (visual styles)

If you have a non-themed, non-Unicode VCL application with an TEdit "TestEdit" and set TestEdit.Font.Charset to RUSSIAN_CHARSET TestEdit displays cyrillic characters. If however you switch the app to ...
1
vote
1answer
396 views

visual styles independent drawing

Using C# winforms, i want to create custom controls that looks like the real ones. There are a lot of classes that can be used to draw controls that looks like the real ones: ControlPaint, ...
1
vote
1answer
45 views

Is it possible for Visual Studio to use default colors when pasting into other applications (eg. Outlook)?

I have a custom color theme within visual studio which uses a dark background which looks great, however when I copy & paste into Outlook I would like outlook to use the default formatting, is ...
1
vote
1answer
888 views

Help: Change WPF application manifest?

I posted a comment to Microsoft that the Dialog Boxes in WPF are not VisualStyle enabled. Joe Castro posted a workaround there which I don't really understand how to achieve, can anyone help? Here ...
1
vote
2answers
1k views

Enable Visual Styles for a Class Library

how do I enable visual styles when my project is a class library and it's being loaded into a program that does not have Application.EnableVisualStyles() set. I have been struggling with this for 2 ...
0
votes
1answer
69 views

Selectively Enable Visual Styles on Dialogs/Windows

I've implemented the use of visual styles on all common controls through the use of a manifest file as directed by this article - http://msdn.microsoft.com/en-us/library/bb773175.aspx. Is there a way ...
0
votes
1answer
188 views

winforms visual styles on mono

How to enable winforms visual styles in mono( probably running in fedora or ubuntu gnome) or is it a good idea to just use GTK#? The thing is I dont want to leave visual studio and use monodevelop for ...
0
votes
1answer
257 views

Apply a custom Visual Style (.msstyle) to a single Winforms app

Is there any way to apply a custom Visual Style (.msstyle) to a Windows Forms application without changing the theme of the entire system? Basically we want our application to maintain the same theme ...
0
votes
0answers
116 views

Disabled Visual Styles for Debug|x86 build

I have a C# project targeting .NET 4.0 which I normally build with 'AnyCPU'. Due to some new 32bit dependencies I have to switch to x86. The problem I have now is that there are no Visual Styles ...
0
votes
1answer
176 views

Is it possible to set a command button to have a 3D disabled graphic in Visual Studio 2008?

I've recently started a WinForms project in Visual Studio 2008 and I notice that when I disable a command button, it flattens out the button and leave the text black. This is quite an unexpected ...
0
votes
2answers
739 views

How do you draw a Taskbar button using visual styles?

I've created a DeskBand toolbar and I want to display a button on the toolbar that has the style visual style as a taskbar button. In .NET you can use the VisualStyleRenderer to render the Taskbar ...