Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

18
votes
2answers
877 views

Aero: How to draw solid (opaque) colors on glass?

Using GDI+ to draw various colors: brush = new SolidBrush(color); graphics.FillRectangle(brush, x, y, width, height); You'll notice that no opaque color shows properly on glass: How do i draw ...
15
votes
2answers
311 views

Delphi cutting glass

I'm using Delphi XE2, and I like glass effects, and I want to "cut" glass as in Windows 7 tablet tools. If you also know how cut a button I'll be happy if you tell me how. Thanks
8
votes
2answers
668 views

Delphi XE with Aero effects causes paint issue

I have upgraded to Delphi XE from 2009 and am experiencing a strange issue. I create a new project, put down a TRibbon control, compile and run. Keeping the form in its default size I then minimize ...
5
votes
1answer
278 views

How to add Window's Aero effects to a JPanel?

I'm trying to have Aero Glass look in my JPanel. Is it possible do such a thing? How to add Aero effect to JFrame - like this picture?
4
votes
1answer
956 views

How to use WindowChrome without Windows Aero glass effects in wpf, black boarder

I'm trying to customize a window border by using the WindowChrome class. Without Windows Aero glass effects. As expected I end up with a black boarder. But i also end up witout caption buttons From ...
4
votes
3answers
1k views

Combining Aero Glass effects and SWT

As a pet project, I've been playing with the concept of integrating Aero Glass effects into my SWT application. Ɓukasz Milewski has an excellent blog post explaining how this can be accomplished, ...
3
votes
2answers
426 views

WinAPI Aero Glass without ATL/WTL/MFC/SDK/etc

I've been looking for ages for C++ examples for Aero Glass interfaces using just WinAPI (CreateWindow/CreateWindowEx) without ATL/WTL/MFC/etc. I found someone linking to one somewhere on a forum but ...
3
votes
1answer
3k views

How can I get Aero Glass on a Windows Form without Borders?

I'm trying to have Aero Glass look in my forms in VB.NET 2010 app with DWM API, but as function call suggests, it extends look of Frame to the client area, and if form has no border, nothing will ...
3
votes
1answer
532 views

Aero: How to draw ClearType text on glass?

Using GDI+ to draw text on glass: graphics.DrawString(s, Length(s), font, MakePointF(x, y), brush); You'll notice that the ClearType enabled text draws very poorly on glass: But with glass ...
2
votes
1answer
73 views

Is it possible to change the glass color only for my own forms?

I would like to create my application forms in the color independent from the user's color settings of the Aero. Is it possible to colorize my forms with the selected color without affecting the ...
2
votes
1answer
487 views

DwmExtendFrameIntoClientArea without TransparencyKey?

When using DwmExtendFrameIntoClientArea function I need to choose Form.TransparencyKey, a color that a glass will be drawn on instead. The problem is that i writing image-edit tool, and when ...
1
vote
1answer
90 views

Enabling Aero Glass in custom-drawn window title (WM_NCPAINT, DwmSetWindowAttribute)

Some years ago we developed an ActiveX component called CaptionX (CaptionX Home Page). It allows the developers to place custom clickable graphical buttons into the window title bar. All works fine in ...
1
vote
1answer
83 views

DrawThemeTextEx and clipped glow

Using this complete example I could draw text on Aero Glass. The rendering is perfectly fine, but there is a visual problem: the glow is clipped on the text-alignment side. FYI, text format is ...
1
vote
1answer
141 views

Click event not raised in expanded glass area?

so I just expanded the glass area of my form into the client area with DwmExtendFrameIntoClientArea (Vista / 7 Aero stuff). I have already sent a Windows message in the override Form class method ...
1
vote
0answers
102 views

Add transparent image over extended glassframe

I am experiencing a little problem with DWM extended glassframe in a windows form. I have extended the glass frame of my winform and added a custom control that draws a tab onto it with a white ...
1
vote
1answer
340 views

Custom dwm drawn window frame flickers on resizing if the window contains a HwndHost element

I've been thinking about this for a couple of days but I think I lack some basic understanding of how windows and wpf work internally to figure this out. The problem is this: I created a window that ...
1
vote
0answers
332 views

How to use Aero glass glow effect for non-text

I am making a program that makes extensive use of the Aero glass features of Windows Vista/7. I render text on glass using DrawThemeTextEx and setting iGlowSize appropriately. However, having the glow ...
1
vote
2answers
827 views

Windows aero glass form text problem

I use windows form with GlassForm(using Microsoft.WindowsAPICodePack.Shell;). my problem when I change form to GlassForm my textbox texts doesnt
1
vote
1answer
188 views

Controls blurred over aero glass after resizing

I am building a form using aero-glass as background, as I described in "Windows Aero Glass background is broken after hibernate. How can I solve this?". The window has ResizeMode="NoResize" ...
1
vote
1answer
323 views

Enabling Aero effect in Windows Server 2008 R2

I'm using Windows Server 2008 R2 as a Workstation and would like to enable Aero Glass for some software development. Is there a way to enable Aero Glass on Server? Thanks in advance, NieAR
1
vote
1answer
1k views

Desktop Icon manipulation - how to get to ge a handle to SysListView32 when themes with picture rotation are enabled

I'm trying to move icons around the desktop, everything works well until a theme that has picture rotation is picked. With a basic Windows 7 theme, the SysListView32 is child of "SHELLDLL_DefView" ...
1
vote
1answer
578 views

Owner Drawing TMainMenu over Aero Glass Form?

The Problem I am working with a form where the aero glass border is extended from the top around 80 pixels. TMainMenu doesnt support custom positioning out of the box and I only assume it might be ...
1
vote
2answers
220 views

How do I mimic the windows 7 UI?

I want to try and get the same look as Windows 7, with the aero glass dropping down just a little bit so that there can be a back button/address bar/ search box. Are there any tutorials on how to do ...
1
vote
3answers
302 views

Windows Vista/7 glass completely broken?

I'm trying to get the media player glass effect for an application, but I'm facing roadblocks all around. Is it me, or is it the API? I started by calling: MARGINS margins = { -1, -1, -1, -1 }; ...
1
vote
3answers
2k views

c# how to make a Windows 7 aero winform (blured glass)?

how to make somthing like this Windows Forms Glass Effect, Make ImageBox transparent I use VS 2010
1
vote
1answer
317 views

When to use DwmExtendFrameIntoClientArea?

As we know, several modern applications (IE9, Firefox 4, Chrome, Paint.NET, etc.) use DwmExtendFrameIntoClientArea for the Aero glass effect. What type of applications should you really use this for, ...
0
votes
0answers
87 views

DwmExtendFrameIntoClientArea Not working the same on Vista

Ive been using the class Glass_full from here: http://www.dreamincode.net/forums/topic/146813-glass-form-dwmapidll-api/ It works fine on Windows 7. Ive even managed to find a easy workaround for the ...
0
votes
1answer
596 views

How to set Windows Forms Application (C++) to have an Aero/Glass background?

I am working on creating a Windows Forms Application in C++ using Visual Studio 2010 Pro. I wanted to create a transparent background, that is, using the Aero Glass effect, similar to the way it ...
0
votes
1answer
113 views

Running a .NET 2.0 app windows form app on Windows 7 with Aero enabled causes menu interactions to crash the application

I have a legacy .NET 2.0 windows forms application that I am working with. It works fine in XP but in Windows 7, if an aero theme is enabled the app starts up, but crashes when you click 'File' in the ...
0
votes
3answers
426 views

Windows Aero Glass background is broken after hibernate. How can I solve this?

I am developing a program in C# .net 3.5 wpf. It has to work on windows xp, windows vista and windows 7. On the newer operation systems I wantet to create the background in Aero Glass. So this is only ...