C# Class Windows.UI.Interactivity.InteractivityBase

Inheritance: Windows.UI.Xaml.FrameworkElement, IAttachedObject
Afficher le fichier Open project: jlaanstra/Windows.UI.Interactivity Class Usage Examples

Private Properties

Свойство Type Description
DataContextChanged void

Méthodes publiques

Méthode Description
Attach ( FrameworkElement frameworkElement ) : void
Detach ( ) : void
InteractivityBase ( ) : System

Initializes a new instance of the InteractivityBase class.

Méthodes protégées

Méthode Description
OnAssociatedObjectChanged ( ) : void
OnAttached ( ) : void

Called after the behavior is attached to an AssociatedObject.

Override this to hook up functionality to the AssociatedObject.

OnDataContextChanged ( object oldValue, object newValue ) : void
OnDetaching ( ) : void

Called when the behavior is being detached from its AssociatedObject, but before it has actually occurred.

Override this to unhook functionality from the AssociatedObject.

Private Methods

Méthode Description
DataContextChanged ( object sender, EventArgs e ) : void

Method Details

Attach() public méthode

public Attach ( FrameworkElement frameworkElement ) : void
frameworkElement Windows.UI.Xaml.FrameworkElement
Résultat void

Detach() public méthode

public Detach ( ) : void
Résultat void

InteractivityBase() public méthode

Initializes a new instance of the InteractivityBase class.
public InteractivityBase ( ) : System
Résultat System

OnAssociatedObjectChanged() protected méthode

protected OnAssociatedObjectChanged ( ) : void
Résultat void

OnAttached() protected méthode

Called after the behavior is attached to an AssociatedObject.
Override this to hook up functionality to the AssociatedObject.
protected OnAttached ( ) : void
Résultat void

OnDataContextChanged() protected méthode

protected OnDataContextChanged ( object oldValue, object newValue ) : void
oldValue object
newValue object
Résultat void

OnDetaching() protected méthode

Called when the behavior is being detached from its AssociatedObject, but before it has actually occurred.
Override this to unhook functionality from the AssociatedObject.
protected OnDetaching ( ) : void
Résultat void