New to Telerik UI for WPFStart a free 30-day trial

Allows a user to view a header and expand that header to see further details, or to collapse a section up to a header.

Definition

Constructors

Initializes a new instance of the PivotGroupHeader class.

C#
public PivotGroupHeader()

Fields

IsExpandedProperty

DependencyProperty

Identifies the IsExpanded dependency property.

C#
public static readonly DependencyProperty IsExpandedProperty

Properties

Gets or sets whether the details are expanded or collapsed.

C#
public bool IsExpanded { get; set; }

Methods

Updates the visual state of the control.

C#
protected virtual void ChangeVisualState(bool useTransitions)
Parameters:useTransitionsbool

True to use a VisualTransition to transition between states; otherwise, false.

C#
public override void OnApplyTemplate()
C#
protected override AutomationPeer OnCreateAutomationPeer()
Returns:

AutomationPeer

Overrides: PivotHeader.OnCreateAutomationPeer()

C#
protected override void OnInitialized(EventArgs e)
Parameters:eEventArgs

Overrides: PivotHeader.OnInitialized(EventArgs)

C#
protected override void OnMouseLeftButtonDown(MouseButtonEventArgs e)
Parameters:eMouseButtonEventArgs

Overrides: PivotHeader.OnMouseLeftButtonDown(MouseButtonEventArgs)

Events

Occurs when the value of the IsExpanded property on this element changes.

C#
public event EventHandler<ExpandCollapseEventArgs> IsExpandedChanged