Questions tagged [aero-glass]

Aero Glass is a Microsoft Windows desktop theme, incorporating various animation and transparency effects into the desktop using hardware acceleration and the Desktop Window Manager (DWM).

Aero Glass is a Microsoft Windows desktop theme, incorporating various animation and transparency effects into the desktop using hardware acceleration and the Desktop Window Manager (DWM).

151 questions
0
votes
2 answers

How to make a control with a "glass" background?

I have a project where I need to do a layers of Containers. Container must have something like: Form.Opacity = 0; User can see elements under top layer, but can't use them. I saw many examples with transparent backgrounds, but in my way I'll need…
justAuser
  • 60
  • 1
  • 11
0
votes
0 answers

WS_EX_LAYERED window chroma key (LWA_COLORKEY) doesn't work in Windows 7 with Aero Glass enabled

I'm trying to make a DirectX8 application (Game Maker) chroma keyed using layered windows (WS_EX_LAYERED extended style flags, and LWA_COLORKEY method) for transparency and correct hit testing on a borderless window. However, out of all platforms…
renex
  • 1
  • 1
0
votes
0 answers

C# winforms Glass control "CallbackOnCollectedDelegate" issue

So ive been working on a glass class that I found online and have modified the drawing of the controls to look smoother on the windows 10 glass controls. It works great until I open multiple windows, after the 3rd window is opened the program…
0
votes
1 answer

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 menu bar. The application runs fine when using a…
Karl
  • 92
  • 5
0
votes
1 answer

How to give a glass appearance to the control under an adorner?

I am attempting to "blurr" a windows 10 user control when an adorner is placed over it. More exactly, I have a datagrid control in a wpf user window. When a cell in the datagrid is selected, an editing adorner is created over the datagrid…
Alan Wayne
  • 5,122
  • 10
  • 52
  • 95
0
votes
3 answers

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
unclemrah
  • 85
  • 1
  • 2
  • 9
0
votes
1 answer

How can i style my GUI as Aero Glass GUI with AutoIt?

How can i get the Aero Glass effect for my Autoit GUI? I am playing a bit with AutoIt to increase my knowledge about GUI stuff. Usually i just create scripts without the usage of a GUI, but i would like to have a nice looking areo glass GUI when i…
AntonD
  • 15
  • 8
0
votes
0 answers

Sitecore - Rendering an image with Glass has stopped working, but only on the Web database

So I have some components which render images using @Html.Glass().RenderImage. Seemingly overnight the images went from rendering to not. Everything works fine in experience editor which uses the master database but after publishing to the web…
JKO
  • 1
0
votes
3 answers

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 a special design. After hibernate, after…
Legy
  • 411
  • 3
  • 9
0
votes
1 answer

aapt and :app:processDebugRecources errors

I got problems with aapt and :app:processDebugRecources. How I can get these errors go away? I did add only compile 'madgaze.x5_gesture:development-kit:1.1.7.beta' to build.gradle. All other things in project is untouched Here is my…
Minde
  • 15
  • 7
0
votes
1 answer

Re-Creating Aero Glass for Bootstrap

So, this concept is simple, but the code is complicated... Here's a partial example - look at the navbar on this site: navbar aero glass example It is just a DIV with a tiled background with maybe a 50% opacity. Now, to get the full aero glass…
0
votes
1 answer

HTTP Status 404 - Not Found Glassfish on JSP

Im beginner in the java, and im working with some small project. I have a problem. When i want to go through the link to open a JSP page with some method i got this error: HTTP Status 404 - Not Found type Status report messageNot…
xpyHbo
  • 1
  • 1
0
votes
1 answer

Display customized installer images with Aero glass in Windows 7

I have added custom installer images, but when you combine the Aero glass windows 7, they aren't displayed. Is there any solution? These images are when you are clicking them to lead to a URL: Without Aero Glass With Aero Glass My…
0
votes
1 answer

How to draw a opaque image on the Aero glass window?

I have used DWM API to create a Aero glass window by calling DwmExtendFrameIntoClientArea. void CMainFrame::OnActivate(UINT nState,CWnd* pWndOther,BOOL bMinimized ) { CFrameWnd::OnActivate(nState,pWndOther,bMinimized); BOOL fDwmEnabled =…
user2365346
  • 377
  • 1
  • 2
  • 17
0
votes
2 answers

How enable or disable AERO Composition in Windows 8 or higher?

I have a updated code that works fine for enable or disable AERO Composition in Windows Vista and Windows 7. But this same code don't works when is used in Windows 8 systems. I saw in other website that from of Windows 8, AERO Composition can no…