Table of Contents

Class PopupBox

Namespace
HeBianGu.Control.Message
Assembly
HeBianGu.Control.Message.dll

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

RoutedEvent

IsPopupOpenProperty

public static readonly DependencyProperty IsPopupOpenProperty

Field Value

DependencyProperty

OpenedEvent

public static readonly RoutedEvent OpenedEvent

Field Value

RoutedEvent

PlacementModeProperty

public static readonly DependencyProperty PlacementModeProperty

Field Value

DependencyProperty

PopupContentControlPartName

public const string PopupContentControlPartName = "PART_PopupContentControl"

Field Value

string

PopupContentProperty

public static readonly DependencyProperty PopupContentProperty

Field Value

DependencyProperty

PopupContentTemplateProperty

public static readonly DependencyProperty PopupContentTemplateProperty

Field Value

DependencyProperty

PopupIsClosedStateName

public const string PopupIsClosedStateName = "IsClosed"

Field Value

string

PopupIsOpenStateName

public const string PopupIsOpenStateName = "IsOpen"

Field Value

string

PopupModeProperty

public static readonly DependencyProperty PopupModeProperty

Field Value

DependencyProperty

PopupPartName

public const string PopupPartName = "PART_Popup"

Field Value

string

StaysOpenProperty

public static readonly DependencyProperty StaysOpenProperty

Field Value

DependencyProperty

ToggleCheckedContentClickEvent

Event raised when the checked toggled content (if set) is clicked.

public static readonly RoutedEvent ToggleCheckedContentClickEvent

Field Value

RoutedEvent

ToggleCheckedContentCommandParameterProperty

public static readonly DependencyProperty ToggleCheckedContentCommandParameterProperty

Field Value

DependencyProperty

ToggleCheckedContentCommandProperty

public static readonly DependencyProperty ToggleCheckedContentCommandProperty

Field Value

DependencyProperty

ToggleCheckedContentProperty

public static readonly DependencyProperty ToggleCheckedContentProperty

Field Value

DependencyProperty

ToggleCheckedContentTemplateProperty

public static readonly DependencyProperty ToggleCheckedContentTemplateProperty

Field Value

DependencyProperty

ToggleContentProperty

public static readonly DependencyProperty ToggleContentProperty

Field Value

DependencyProperty

ToggleContentTemplateProperty

public static readonly DependencyProperty ToggleContentTemplateProperty

Field Value

DependencyProperty

TogglePartName

public const string TogglePartName = "PART_Toggle"

Field Value

string

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

DependencyProperty

Properties

IsPopupOpen

Gets or sets whether the popup is currently open.

public bool IsPopupOpen { get; set; }

Property Value

bool

PlacementMode

Gets or sets how the popup is aligned in relation to the toggle.

public PopupBoxPlacementMode PlacementMode { get; set; }

Property Value

PopupBoxPlacementMode

PopupContent

Content to display in the content.

public object PopupContent { get; set; }

Property Value

object

PopupContentTemplate

Popup content template.

public DataTemplate PopupContentTemplate { get; set; }

Property Value

DataTemplate

PopupMode

Gets or sets what trigger causes the popup to open.

public PopupBoxPopupMode PopupMode { get; set; }

Property Value

PopupBoxPopupMode

PopupPlacementMethod

Framework use. Provides the method used to position the popup.

public CustomPopupPlacementCallback PopupPlacementMethod { get; }

Property Value

CustomPopupPlacementCallback

StaysOpen

Indicates of the popup should stay open if a click occurs inside the popup.

public bool StaysOpen { get; set; }

Property Value

bool

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

object

ToggleCheckedContentCommand

Command to execute if toggle is checked (popup is open) and ToggleCheckedContent is set.

public ICommand ToggleCheckedContentCommand { get; set; }

Property Value

ICommand

ToggleCheckedContentCommandParameter

Command parameter to use in conjunction with ToggleCheckedContentCommand.

public object ToggleCheckedContentCommandParameter { get; set; }

Property Value

object

ToggleCheckedContentTemplate

Template for ToggleCheckedContent.

public DataTemplate ToggleCheckedContentTemplate { get; set; }

Property Value

DataTemplate

ToggleContent

Content to display in the toggle button.

public object ToggleContent { get; set; }

Property Value

object

ToggleContentTemplate

Template for ToggleContent.

public DataTemplate ToggleContentTemplate { get; set; }

Property Value

DataTemplate

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

Orientation

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 DependencyPropertyChangedEventArgs

A 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 MouseEventArgs

The 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 MouseEventArgs

The 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 MouseButtonEventArgs

The 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()

protected virtual void OnToggleCheckedContentClick()

Events

Closed

Raised when the popup is opened.

public event RoutedEventHandler Closed

Event Type

RoutedEventHandler

Opened

Raised when the popup is opened.

public event RoutedEventHandler Opened

Event Type

RoutedEventHandler

ToggleCheckedContentClick

Event raised when the checked toggled content (if set) is clicked.

public event RoutedEventHandler ToggleCheckedContentClick

Event Type

RoutedEventHandler