Introduction
Is your application incompatible with Aero interface? Do you want to disable Aero from your application? You are in the right place.
Using the Code
Using this code is really simple, almost anyone can use it easily.
Just add System.Runtime.InteropServices
to your usings and paste this code into the application.
public readonly uint DWM_EC_DISABLECOMPOSITION = 0;
public readonly uint DWM_EC_ENABLECOMPOSITION = 1;
[DllImport("dwmapi.dll", EntryPoint = "DwmEnableComposition")]
protected extern static uint Win32DwmEnableComposition(uint uCompositionAction);
public bool ControlAero(bool enable)
{
try
{
if (enable)
Win32DwmEnableComposition(DWM_EC_ENABLECOMPOSITION);
if (!enable)
Win32DwmEnableComposition(DWM_EC_DISABLECOMPOSITION);
return true;
}
catch { return false; }
}
You can disable Aero with ControlAero(false)
, and enable Aero with ControlAero(true)
. If you are on an XP or prior Windows operating system, this method will return false
, if everything is done without an exception, it will return true
. After your application is closed, Aero will get enabled automatically.
History
- 29th August, 2009: Initial post