|
Is it possible for a Swing based Java to have the Aero Glass effect as the background under Windows Vista/7?
Started by Grogs on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
There's a blog post with a lot.
As of JSE 6 Swing's native look and feel for windows uses Aero.
|
|
Duplicate: Is it possible to achieve the “Aero Glass” look on XP?
If I use Winforms and I write a win32 application with it, I can see the Aero glass effects in Vista but not in XP.
How could I achieve the same look across different platforms? I am using...
Started by Joan Venge on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
What "Aero effect" are you referring to? If you're talking about the window glass, then I'm afraid.
|
|
Hey there I Decided to install win 7 64 bit i have a geforce 7950 GX2 and aero isnt working :S I've installed the 8.16.11.9107 x64 driver and still nothing Im not sure what I'm meant to do :s any ideas?
Answer Snippets (Read the full thread at superuser):
So, you'll start....
The easiest way to do have hardware that supports aero, it may not work immediately after installing Windows 7 due to display adapter driver issues.
You will need to re-run the Aero / Windows Experience Index assessment.
|
Ask your Facebook Friends
|
Possible Duplicate:
Remote Desktop and Aero in Windows 7
Hi!
Is there any hacks that allowes Aero Glass Remoting (From Windows 7 Pro) to my Windows 7 Pro?
I presume there is also patch for Windows 7 Pro that allows using the computer and remoting the ...
Started by Ciantic on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at superuser):
Do you mean Aero Glass Remoting or just ....
I think you'll need to clarify what you mean by Aero Remoting.
This is built in to the latest version of Remote Desktop / Terminal not require any "hack" .
It should allow remote Aero.
|
|
Hey All,
A litle while ago I was on Codeproject and came across a cool little tesxteditor and the whole form was made out of aero-glass, and the whole textbox was too. But I can't find it anymore. Does anybody know where it's gone? Or how I can make my...
Started by baeltazor on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Http://blogs.msdn.com/tims/archive/2006/04/18/578637.aspx.
Not for WPF.
This is for windows forms.
Http://stackoverflow.com/questions/1324398/enable-vista-glass-effect-on-a-borderless-wpf-window
Hi.
Could this be what you're after...
|
|
In my application, I get the screen resolution with this code:
SystemInformation.PrimaryMonitorSize
And I get the DPI with this code:
using (Graphics g = Graphics.FromHdc(NativeMethods.GetDC(IntPtr.Zero))) { dpiX = g.DpiX; dpiY = g.DpiY; }
This works ...
Started by epotter on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
When compositing ("Aero.
Note, you shouldn't muck with HWND_DESKTOP (which is what (HWND)0 is) .
|
|
Windows 7 has the full and basic aero themes that can be changed inside personalization. Windows used to automatically disable Windows Aero (transparency) when I unplug my laptop from the mains.
I reset the theme and now it doesn't do this anymore. I ...
Started by Dan Revell on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at superuser):
Not only can you have it disable Aero when on battery, you can have it switch disable the aero transparent....
The options in there let you turn off Aero as I use it myself.
In the Advanced power settings called Dell Additional settings.
|
|
I'd like to implement a window much like how the newer versions of IE have the URL bar kind of incased in the Vista/7 aero. I've looked around and not found too much useful information, and was wondering if any of you guys knew of the best way to do it...
Started by sniperX on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Aero Glass is to have your WPF Window inherit Microsoft.WindowsAPICodePack.Shell.GlassWindow class.
|
|
I'm using Windows 7 RTM and I wonder how the control panel is able to update the Aero Glass color so smoothly without restarting the DWM (uxsms). DwmSetColorizationColor isn't working any more...
Started by Fred on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Here are some MSDN samples for working with Aero:
http://msdn.microsoft.com/en-us.
|
|
Anyone have any good resources for Delphi and Windows Aero on 7 or Vista?
We're just about to add Windows 7 to our company and want to make sure that our in-house applications use fit in as well as possible.
Using Delphi 2010 I can add the Glass Frame...
Started by Dan Kelly on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
TMS Components are always being updated to include the latest themes, including Windows 7, and Raize Components allow you to make use of transparency, gradients... .
I agree that using the Enable Runtime Themes project option should make most controls theme-aware .
|