Class
MosaicTilePart

A small rectangle that has two sides and can flip between the two with a swivel animation.

Definition

Namespace:Telerik.UI.Xaml.Controls.Primitives.HubTile

Assembly:Telerik.WinUI.Controls.dll

Syntax:

cs-api-definition
public class MosaicTilePart : RadControl

Inheritance: objectRadControlMosaicTilePart

Inherited Members RadControl.EndVisualStateUpdate(bool, bool)RadControl.UpdateVisualState(bool)RadControl.BeginVisualStateUpdate()RadControl.OnCreateAutomationPeer()RadControl.SetVisualState(string, bool)RadControl.CanUpdateVisualState()RadControl.ComposeVisualStateName()RadControl.MeasureOverride(Size)RadControl.ArrangeOverride(Size)RadControl.OnApplyTemplate()RadControl.UnapplyTemplateCore()RadControl.OnIsEnabledChanged(bool, bool)RadControl.ApplyTemplateCore()RadControl.LoadCore()RadControl.OnLoaded()RadControl.UnloadCore()RadControl.CurrentVisualStateRadControl.IsLoadedRadControl.IsLoadingRadControl.IsUnloadedRadControl.WasUnloadedRadControl.IsTemplateApplied

Constructors

MosaicTilePart()

Initializes a new instance of the MosaicTilePart class.

Declaration

cs-api-definition
public MosaicTilePart()

Fields

BackContentProperty

Identifies the FrontContent dependency property.

Declaration

cs-api-definition
public static readonly DependencyProperty BackContentProperty

Field Value

DependencyProperty

BackContentTemplateProperty

Identifies the BackContentTemplate dependency property.

Declaration

cs-api-definition
public static readonly DependencyProperty BackContentTemplateProperty

Field Value

DependencyProperty

FrontContentProperty

Identifies the FrontContent dependency property.

Declaration

cs-api-definition
public static readonly DependencyProperty FrontContentProperty

Field Value

DependencyProperty

FrontContentTemplateProperty

Identifies the FrontContentTemplate dependency property.

Declaration

cs-api-definition
public static readonly DependencyProperty FrontContentTemplateProperty

Field Value

DependencyProperty

Properties

BackContent

Gets or sets the content on the back side of the flip tile.

Declaration

cs-api-definition
public object BackContent { get; set; }

Property Value

object

BackContentTemplate

Gets or sets the back content template.

Declaration

cs-api-definition
public DataTemplate BackContentTemplate { get; set; }

Property Value

DataTemplate

FrontContent

Gets or sets the content on the front side of the flip tile.

Declaration

cs-api-definition
public object FrontContent { get; set; }

Property Value

object

FrontContentTemplate

Gets or sets the front content template.

Declaration

cs-api-definition
public DataTemplate FrontContentTemplate { get; set; }

Property Value

DataTemplate

IsInFrontState

Gets a value indicating whether the flip tile is in its front state.

Declaration

cs-api-definition
public bool IsInFrontState { get; }

Property Value

bool

Methods

Flip()

Flips the tile to its other side.

Declaration

cs-api-definition
public void Flip()

OnBackContentChanged(object, object)

A virtual callback that is invoked when the BackContent property changes.

Declaration

cs-api-definition
protected virtual void OnBackContentChanged(object newContent, object oldContent)

Parameters

newContent

object

The new BackContent.

oldContent

object

The old BackContent.

OnFrontContentChanged(object, object)

A virtual callback that is invoked when the FrontContent property changes.

Declaration

cs-api-definition
protected virtual void OnFrontContentChanged(object newContent, object oldContent)

Parameters

newContent

object

The new FrontContent.

oldContent

object

The old FrontContent.

OnTemplateApplied()

Occurs when the method has been called and the template is already successfully applied.

Declaration

cs-api-definition
protected override void OnTemplateApplied()

Overrides RadControl.OnTemplateApplied()