New to Telerik UI for WPFStart a free 30-day trial

IWindow

Interface

Contains methods and properties of a window.

Definition

Namespace:Telerik.Windows.Controls

Assembly:Telerik.Windows.Controls.dll

Syntax:

C#
public interface IWindow

Derived Classes: PopupWindow

Properties

Icon

ImageSource

Gets or sets the icon of the window. This is a dependency property.

C#
ImageSource Icon { get; set; }
Property Value:

An ImageSource that represents the window's icon.

Gets or sets the window's title. This is a dependency property.

C#
string Title { get; set; }
Property Value:

A string that contains the window's title.

Methods

Activates the window and brings it to the foreground.

C#
void Activate()

Manually closes the window.

C#
void Close()

Opens the window.

C#
void Show()