Intersoft ClientUI Documentation
OverlayBackground Property
See Also  Send Feedback
Intersoft.Client.UI.Controls Namespace > UXBusyIndicator Class : OverlayBackground Property






Gets or sets the brush to apply to the overlay background.

Syntax

Visual Basic (Declaration) 
<CategoryAttribute("Brushes")>
Public Property OverlayBackground As Brush
Visual Basic (Usage)Copy Code
Dim instance As UXBusyIndicator
Dim value As Brush
 
instance.OverlayBackground = value
 
value = instance.OverlayBackground
C# 
[CategoryAttribute("Brushes")]
public Brush OverlayBackground {get; set;}
Delphi 
public read-write property OverlayBackground: Brush; 
JScript 
CategoryAttribute("Brushes")
public function get,set OverlayBackground : Brush
Managed Extensions for C++ 
[CategoryAttribute("Brushes")]
public: __property Brush* get_OverlayBackground();
public: __property void set_OverlayBackground( 
   Brush* value
);
C++/CLI 
[CategoryAttribute("Brushes")]
public:
property Brush^ OverlayBackground {
   Brush^ get();
   void set (    Brush^ value);
}

Remarks

One of the useful features in UXBusyIndicator is the ability to block the content from user interaction when the control is in busy state. This feature is enabled by default, which can be disabled by setting the BlockUIOnBusy property to false.

When enabled, UXBusyIndicator automatically disable the content and show an overlay on the top of the content which gives impression to users that the content cannot be accessed.

The overlay is set to a semi-transparent radial gradient background which is ideal for typical business applications. You can easily customize the background brush by setting the OverlayBackground property. In addition, you can provide more comprehensive styling to the overlay element by specifying a style to the OverlayStyle property.

The following illustration shows the UXBusyIndicator with a customized overlay background.

Requirements

Target Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family

See Also

© 2012 All Rights Reserved.