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

Gets or sets Icon image as BitmapSource.

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

Syntax

C#
[DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Hidden)]
[BrowsableAttribute(false)]
public BitmapSource IconImage { get; set; }
Visual Basic
<DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Hidden)> _
<BrowsableAttribute(False)> _
Public Property IconImage As BitmapSource
	Get
	Set
Visual C++
[DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility::Hidden)]
[BrowsableAttribute(false)]
public:
property BitmapSource^ IconImage {
	BitmapSource^ get ();
	void set (BitmapSource^ value);
}
F#
[<DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Hidden)>]
[<BrowsableAttribute(false)>]
member IconImage : BitmapSource with get, set
JScript
function get IconImage () : BitmapSource
function set IconImage (value : BitmapSource)

Field Value

Sets value of the Icon property

Return Value

Value of the Icon property as BitmapSource. This property teruns new instace for each call.

Remarks

Value of this property is internaly stored as Image inside the Icon property.

Change of this property is reported via IReportsChange and INotifyPropertyChanged interfaces

See Also