ContentControl.OnContentChanged(Object, Object) Metodo

Definizione

Richiamato quando viene modificato il valore della proprietà Content .

protected:
 virtual void OnContentChanged(Platform::Object ^ oldContent, Platform::Object ^ newContent) = OnContentChanged;
void OnContentChanged(IInspectable const& oldContent, IInspectable const& newContent);
protected virtual void OnContentChanged(object oldContent, object newContent);
function onContentChanged(oldContent, newContent)
Protected Overridable Sub OnContentChanged (oldContent As Object, newContent As Object)

Parametri

oldContent
Object

Platform::Object

IInspectable

Valore precedente della proprietà Content .

newContent
Object

Platform::Object

IInspectable

Nuovo valore della proprietà Content .

Commenti

Se esiste un valore per ContentTemplateSelector , l'implementazione predefinita chiama SelectTemplate nell'oggetto DataTemplateSelector implementato, passando il nuovo valoreContent come elemento e la chiamata di ContentControl come contenitore. Il valore restituito imposta quindi ContentTemplate automaticamente sul chiamante.

Si applica a