PopupWindow
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
public PopupWindow()
Fields
IconProperty
DependencyProperty
LeftProperty
DependencyProperty
PlacementProperty
DependencyProperty
Identifies the PlacementMode property.
public static readonly DependencyProperty PlacementProperty
The identifier for the PlacementMode property.
TitleProperty
DependencyProperty
TopProperty
DependencyProperty
Properties
Icon
ImageSource
Gets or sets the icon of the window. This is a dependency property.
public ImageSource Icon { get; set; }
An ImageSource that represents the window's icon.
Implements:
Gets or sets the window's left edge. This is a dependency property.
public double Left { get; set; }
The position of the window's left edge.
Gets or sets the PlacementMode of the window. This is a dependency property.
public PlacementMode Placement { get; set; }
The current PlacementMode of the window. The default value is Center
Gets or sets the window's title. This is a dependency property.
public string Title { get; set; }
A string that contains the window's title.
Implements:
Gets or sets the window's top edge. This is a dependency property.
public double Top { get; set; }
The position of the window's top edge.
WindowStartupLocation
WindowStartupLocation
Gets or sets the window startup location.
public WindowStartupLocation WindowStartupLocation { get; set; }
The window startup location.
Methods
Activates the window and brings it to the foreground.
public void Activate()
Implements:
Manually closes the window.
public void Close()
Implements:
Minimizes the window.
public void Minimize()
Opens the window.
public void Show()
Implements: