Class PopupBox
Popup box, similar to a ComboBox, but allows more customizable content.
[TemplatePart(Name = "PART_Popup", Type = typeof(Popup))]
[TemplatePart(Name = "PART_PopupContentControl", Type = typeof(ContentControl))]
[TemplatePart(Name = "PART_Toggle", Type = typeof(ToggleButton))]
[TemplateVisualState(GroupName = "PopupStates", Name = "IsOpen")]
[TemplateVisualState(GroupName = "PopupStates", Name = "IsClosed")]
public class PopupBox : ContentControl, IAnimatable, ISupportInitialize, IFrameworkInputElement, IInputElement, IQueryAmbient, IAddChild
- Inheritance
-
PopupBox
- Implements
- Inherited Members
- Extension Methods
Constructors
PopupBox()
public PopupBox()
Fields
ClosedEvent
public static readonly RoutedEvent ClosedEvent
Field Value
IsPopupOpenProperty
public static readonly DependencyProperty IsPopupOpenProperty
Field Value
OpenedEvent
public static readonly RoutedEvent OpenedEvent
Field Value
PlacementModeProperty
public static readonly DependencyProperty PlacementModeProperty
Field Value
PopupContentControlPartName
public const string PopupContentControlPartName = "PART_PopupContentControl"
Field Value
PopupContentProperty
public static readonly DependencyProperty PopupContentProperty
Field Value
PopupContentTemplateProperty
public static readonly DependencyProperty PopupContentTemplateProperty
Field Value
PopupIsClosedStateName
public const string PopupIsClosedStateName = "IsClosed"
Field Value
PopupIsOpenStateName
public const string PopupIsOpenStateName = "IsOpen"
Field Value
PopupModeProperty
public static readonly DependencyProperty PopupModeProperty
Field Value
PopupPartName
public const string PopupPartName = "PART_Popup"
Field Value
StaysOpenProperty
public static readonly DependencyProperty StaysOpenProperty
Field Value
ToggleCheckedContentClickEvent
Event raised when the checked toggled content (if set) is clicked.
public static readonly RoutedEvent ToggleCheckedContentClickEvent
Field Value
ToggleCheckedContentCommandParameterProperty
public static readonly DependencyProperty ToggleCheckedContentCommandParameterProperty
Field Value
ToggleCheckedContentCommandProperty
public static readonly DependencyProperty ToggleCheckedContentCommandProperty
Field Value
ToggleCheckedContentProperty
public static readonly DependencyProperty ToggleCheckedContentProperty
Field Value
ToggleCheckedContentTemplateProperty
public static readonly DependencyProperty ToggleCheckedContentTemplateProperty
Field Value
ToggleContentProperty
public static readonly DependencyProperty ToggleContentProperty
Field Value
ToggleContentTemplateProperty
public static readonly DependencyProperty ToggleContentTemplateProperty
Field Value
TogglePartName
public const string TogglePartName = "PART_Toggle"
Field Value
UnfurlOrientationProperty
Get or sets how to unfurl controls when opening the popups. Only child elements of type ButtonBase are animated.
public static readonly DependencyProperty UnfurlOrientationProperty
Field Value
Properties
IsPopupOpen
Gets or sets whether the popup is currently open.
public bool IsPopupOpen { get; set; }
Property Value
PlacementMode
Gets or sets how the popup is aligned in relation to the toggle.
public PopupBoxPlacementMode PlacementMode { get; set; }
Property Value
PopupContent
Content to display in the content.
public object PopupContent { get; set; }
Property Value
PopupContentTemplate
Popup content template.
public DataTemplate PopupContentTemplate { get; set; }
Property Value
PopupMode
Gets or sets what trigger causes the popup to open.
public PopupBoxPopupMode PopupMode { get; set; }
Property Value
PopupPlacementMethod
Framework use. Provides the method used to position the popup.
public CustomPopupPlacementCallback PopupPlacementMethod { get; }
Property Value
StaysOpen
Indicates of the popup should stay open if a click occurs inside the popup.
public bool StaysOpen { get; set; }
Property Value
ToggleCheckedContent
Content to display in the toggle when it's checked (when the popup is open). Optional; if not provided the ToggleContent is used.
public object ToggleCheckedContent { get; set; }
Property Value
ToggleCheckedContentCommand
Command to execute if toggle is checked (popup is open) and ToggleCheckedContent is set.
public ICommand ToggleCheckedContentCommand { get; set; }
Property Value
ToggleCheckedContentCommandParameter
Command parameter to use in conjunction with ToggleCheckedContentCommand.
public object ToggleCheckedContentCommandParameter { get; set; }
Property Value
ToggleCheckedContentTemplate
Template for ToggleCheckedContent.
public DataTemplate ToggleCheckedContentTemplate { get; set; }
Property Value
ToggleContent
Content to display in the toggle button.
public object ToggleContent { get; set; }
Property Value
ToggleContentTemplate
Template for ToggleContent.
public DataTemplate ToggleContentTemplate { get; set; }
Property Value
UnfurlOrientation
Gets or sets how to unfurl controls when opening the popups. Only child elements of type ButtonBase are animated.
public Orientation UnfurlOrientation { get; set; }
Property Value
Methods
Close()
protected void Close()
OnApplyTemplate()
When overridden in a derived class, is invoked whenever application code or internal processes call ApplyTemplate().
public override void OnApplyTemplate()
OnClosed()
Raises ClosedEvent.
protected virtual void OnClosed()
OnIsKeyboardFocusWithinChanged(DependencyPropertyChangedEventArgs)
Invoked just before the IsKeyboardFocusWithinChanged event is raised by this element. Implement this method to add class handling for this event.
protected override void OnIsKeyboardFocusWithinChanged(DependencyPropertyChangedEventArgs e)
Parameters
e
DependencyPropertyChangedEventArgsA DependencyPropertyChangedEventArgs that contains the event data.
OnMouseEnter(MouseEventArgs)
Invoked when an unhandled System.Windows.Input.Mouse.MouseEnter attached event is raised on this element. Implement this method to add class handling for this event.
protected override void OnMouseEnter(MouseEventArgs e)
Parameters
e
MouseEventArgsThe MouseEventArgs that contains the event data.
OnMouseLeave(MouseEventArgs)
Invoked when an unhandled System.Windows.Input.Mouse.MouseLeave attached event is raised on this element. Implement this method to add class handling for this event.
protected override void OnMouseLeave(MouseEventArgs e)
Parameters
e
MouseEventArgsThe MouseEventArgs that contains the event data.
OnMouseLeftButtonUp(MouseButtonEventArgs)
Invoked when an unhandled MouseLeftButtonUp routed event reaches an element in its route that is derived from this class. Implement this method to add class handling for this event.
protected override void OnMouseLeftButtonUp(MouseButtonEventArgs e)
Parameters
e
MouseButtonEventArgsThe MouseButtonEventArgs that contains the event data. The event data reports that the left mouse button was released.
OnOpened()
Raises OpenedEvent.
protected virtual void OnOpened()
OnToggleCheckedContentClick()
Raises ToggleCheckedContentClickEvent.
protected virtual void OnToggleCheckedContentClick()
Events
Closed
Raised when the popup is opened.
public event RoutedEventHandler Closed
Event Type
Opened
Raised when the popup is opened.
public event RoutedEventHandler Opened
Event Type
ToggleCheckedContentClick
Event raised when the checked toggled content (if set) is clicked.
public event RoutedEventHandler ToggleCheckedContentClick