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

Content control that provides the chrome for the Ribbon groups.

Definition

Namespace:Telerik.Windows.Controls.RibbonView.Primitives

Assembly:Telerik.Windows.Controls.RibbonView.dll

Syntax:

C#
public class GroupChrome : HeaderedContentControl

Inheritance: objectGroupChrome

Constructors

Initializes a new instance of the GroupChrome class.

C#
public GroupChrome()

Fields

Identifies the DialogLauncherButtonStyle property.

C#
public static readonly DependencyProperty DialogLauncherButtonStyleProperty

Identifies the DialogLauncherCommandParameter property.

C#
public static readonly DependencyProperty DialogLauncherCommandParameterProperty

Identifies the DialogLauncherCommand property.

C#
public static readonly DependencyProperty DialogLauncherCommandProperty

Identifies the DialogLauncherCommandTarget property.

C#
public static readonly DependencyProperty DialogLauncherCommandTargetProperty

Identifies the DialogLauncherVisibility property.

C#
public static readonly DependencyProperty DialogLauncherVisibilityProperty

IsCollapsedProperty

DependencyProperty

Identifies the DialogLauncherVisibility property.

C#
public static readonly DependencyProperty IsCollapsedProperty

IsPushedProperty

DependencyProperty

Identifies the DialogLauncherButtonStyle property.

C#
public static readonly DependencyProperty IsPushedProperty

Properties

Gets or sets the dialog launcher button style.

C#
public Style DialogLauncherButtonStyle { get; set; }
Property Value:

The dialog launcher button style.

Gets the command that will be executed when the command source is invoked. This is a dependency property.

C#
[TypeConverter(typeof(CommandConverter))]
public ICommand DialogLauncherCommand { get; set; }

Represents a user defined data value that can be passed to the command when it is executed. This is a dependency property.

C#
public object DialogLauncherCommandParameter { get; set; }

The object that the command is being executed on. This is a dependency property.

C#
public UIElement DialogLauncherCommandTarget { get; set; }

Gets or sets the dialog launcher button visibility.

C#
public Visibility DialogLauncherVisibility { get; set; }

Gets or sets a value indicating whether this instance is collapsed.

C#
public bool IsCollapsed { get; set; }
Property Value:

True if this instance is collapsed; otherwise, false.

Gets or sets a value indicating whether this instance is pushed.

C#
public bool IsPushed { get; set; }
Property Value:

True if this instance is pushed; otherwise, false.

Methods

When overridden in a derived class, is invoked whenever application code or internal processes (such as a rebuilding layout pass) call .

C#
public override void OnApplyTemplate()

Raises the event. This method is invoked whenever is set to true internally.

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

The RoutedEventArgs that contains the event data.

Raises the event.

C#
protected virtual void OnLaunchDialog(EventArgs e)
Parameters:eEventArgs

The EventArgs instance containing the event data.

Called before the event occurs.

C#
protected override void OnMouseEnter(MouseEventArgs e)
Parameters:eMouseEventArgs

The data for the event.

Called before the event occurs.

C#
protected override void OnMouseLeave(MouseEventArgs e)
Parameters:eMouseEventArgs

The data for the event.

Events

Occurs when the button for the dialog launcher is clicked.

C#
public event EventHandler LaunchDialog