OSFeature.LayeredWindows Field

Definition

Represents the layered, top-level windows feature. This field is read-only.

C#
public static readonly object LayeredWindows;

Field Value

Examples

The following example determines whether the current system supports layered windows. The base class method IsPresent is called with LayeredWindows as the feature to look for. The result is displayed in a text box. This code assumes textBox1 has been instantiated and placed on a form.

C#
private void LayeredWindows() {
   // Gets the version of the layered windows feature.
   Version myVersion =
       OSFeature.Feature.GetVersionPresent(OSFeature.LayeredWindows);

   // Prints whether the feature is available.
   if (OSFeature.Feature.IsPresent(OSFeature.LayeredWindows))
      textBox1.Text = "Layered windows feature is installed.";
   else
      textBox1.Text = "Layered windows feature is not installed.";
}

Remarks

A layered window can be made transparent or translucent by the operating system. Support for layered windows was first introduced in Windows 2000.

To determine if the layered windows feature is installed, use the Feature property to call the base class method IsPresent with LayeredWindows as the feature to look for.

Alternatively, you can check to see if the feature is installed by calling the GetVersionPresent method with LayeredWindows as the feature to find.

Applies to

Product Versions
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9, 10

See also