ComponentOne Tiles for UWP
C1.UWP.Tile Assembly / C1.Xaml.Tile Namespace / C1Tile Class / OnContentChanged Method
The old value of the Content property.
The new value of the Content property.

In This Topic
    OnContentChanged Method (C1Tile)
    In This Topic
    Called when the Content property changes. This implementation performs next actions: - places old content into the BackContentPresenter element, - updates ContentPresenter element with new content, - updates ContentTemplate if BackContentTemplate or ContentTemplateSelector property is set, - runs tile update animation.
    Syntax
    'Declaration
     
    Protected Overrides Sub OnContentChanged( _
       ByVal oldContent As System.Object, _
       ByVal newContent As System.Object _
    ) 
    protected override void OnContentChanged( 
       System.object oldContent,
       System.object newContent
    )

    Parameters

    oldContent
    The old value of the Content property.
    newContent
    The new value of the Content property.
    See Also