ClassPopupWindow
A Popup window that can be used as a normal Window in XBAP application. It uses Popup as a placeholder.
Definition
Namespace:Telerik.Windows.Controls
Assembly:Telerik.Windows.Controls.dll
Syntax:
public class PopupWindow : ContentControl, IWindow
Inheritance: objectPopupWindow
Implements:
Constructors
PopupWindow()
Declaration
public PopupWindow()
Fields
IconProperty
Identifies the Icon property.
Declaration
public static readonly DependencyProperty IconProperty
Field Value
DependencyProperty
The identifier for the Icon property.
LeftProperty
Identifies the Left property.
Declaration
public static readonly DependencyProperty LeftProperty
Field Value
DependencyProperty
The identifier for the Left property.
PlacementProperty
Identifies the PlacementMode property.
Declaration
public static readonly DependencyProperty PlacementProperty
Field Value
DependencyProperty
The identifier for the PlacementMode property.
TitleProperty
Identifies the Title property.
Declaration
public static readonly DependencyProperty TitleProperty
Field Value
DependencyProperty
The identifier for the Title property.
TopProperty
Identifies the Top property.
Declaration
public static readonly DependencyProperty TopProperty
Field Value
DependencyProperty
The identifier for the Top property.
Properties
Icon
Gets or sets the icon of the window. This is a dependency property.
Declaration
public ImageSource Icon { get; set; }
Property Value
ImageSource
An ImageSource that represents the window's icon.
Implements
Left
Gets or sets the window's left edge. This is a dependency property.
Declaration
public double Left { get; set; }
Property Value
The position of the window's left edge.
Placement
Gets or sets the PlacementMode of the window. This is a dependency property.
Declaration
public PlacementMode Placement { get; set; }
Property Value
The current PlacementMode of the window. The default value is Center
Title
Gets or sets the window's title. This is a dependency property.
Top
Gets or sets the window's top edge. This is a dependency property.
Declaration
public double Top { get; set; }
Property Value
The position of the window's top edge.
WindowStartupLocation
Gets or sets the window startup location.
Declaration
public WindowStartupLocation WindowStartupLocation { get; set; }
Property Value
WindowStartupLocation
The window startup location.
Methods
Activate()
Activates the window and brings it to the foreground.
Declaration
public void Activate()
Implements