Interface IWindow
Contains methods and properties of a window.
Namespace: Telerik.Windows.Controls
Assembly: Telerik.Windows.Controls.dll
Syntax
public interface IWindow
Properties
Icon
Gets or sets the icon of the window. This is a dependency property.
Declaration
ImageSource Icon { get; set; }
Property Value
System.Windows.Media.ImageSource
An System.Windows.Media.ImageSource that represents the window's icon. |
Title
Gets or sets the window's title. This is a dependency property.
Declaration
string Title { get; set; }
Property Value
System.String
A System.String that contains the window's title. |
Methods
Activate()
Activates the window and brings it to the foreground.
Declaration
void Activate()
Close()
Manually closes the window.
Declaration
void Close()
Show()
Opens the window.
Declaration
void Show()