Form.AllowTransparency Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets a value indicating whether the opacity of the form can be adjusted.
public:
property bool AllowTransparency { bool get(); void set(bool value); };
[System.ComponentModel.Browsable(false)]
public bool AllowTransparency { get; set; }
[<System.ComponentModel.Browsable(false)>]
member this.AllowTransparency : bool with get, set
Public Property AllowTransparency As Boolean
Property Value
true
if the opacity of the form can be changed; otherwise, false
.
- Attributes
Remarks
This property is automatically set to true
if the Opacity
is changed. When the opacity of a form is set using the Opacity
property, the form will layer objects on the form. If you set the AllowTransparency property to false
the form will not be in layered mode which will improve the display performance of the form.