Interface
IWindow

Contains methods and properties of a window.

Definition

Namespace:Telerik.Windows.Controls

Assembly:Telerik.Windows.Controls.dll

Syntax:

cs-api-definition
public interface IWindow

Properties

Icon

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

Declaration

cs-api-definition
ImageSource Icon { get; set; }

Property Value

ImageSource

An ImageSource that represents the window's icon.

Title

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

Declaration

cs-api-definition
string Title { get; set; }

Property Value

string

A string that contains the window's title.

Methods

Activate()

Activates the window and brings it to the foreground.

Declaration

cs-api-definition
void Activate()

Close()

Manually closes the window.

Declaration

cs-api-definition
void Close()

Show()

Opens the window.

Declaration

cs-api-definition
void Show()