Interface IActiveAware
Supports activation, which indicates whether an instance is active or not.
Namespace: Telerik.Windows.Controls
Assembly: Telerik.Windows.Controls.Navigation.dll
Syntax
public interface IActiveAware
Properties
IsActive
Gets or sets whether an instance is active or not.
Declaration
bool IsActive { get; set; }
Property Value
System.Boolean
|
Events
Activated
Occurs when an instance is activated.
Declaration
event EventHandler<EventArgs> Activated
Event Type
System.EventHandler<System.EventArgs>
|
Deactivated
Occurs when an instance is deactivated.
Declaration
event EventHandler<EventArgs> Deactivated
Event Type
System.EventHandler<System.EventArgs>
|