[This is preliminary documentation and is subject to change.]

Gets or sets value indicating if icons of all WPF windows in this application with Icon null will be hidden

Namespace: Tools.WindowsT.WPF
Assembly: Tools.Win (in Tools.Win.dll) Version: 1.5.3.38916 (1.5.3.38916)

Syntax

C#
public static bool GloballyHideNullIconsOfWindows { get; set; }
Visual Basic
Public Shared Property GloballyHideNullIconsOfWindows As Boolean
	Get
	Set
Visual C++
public:
static property bool GloballyHideNullIconsOfWindows {
	bool get ();
	void set (bool value);
}
F#
static member GloballyHideNullIconsOfWindows : bool with get, set
JScript
static function get GloballyHideNullIconsOfWindows () : boolean
static function set GloballyHideNullIconsOfWindows (value : boolean)

Remarks

This property affacts all Windows with Icon = null in current application domain. This property should be set during application startup and then should not be changed. When changed it has effect only on newly opened windows.

See Also