Controller
Provides an abstract base class for controllers that handle interactions and processing within charting components.
Definition
Namespace:Telerik.WinControls.UI
Assembly:Telerik.WinControls.dll
Syntax:
public abstract class Controller : INotifyPropertyChanged
Inheritance: objectController
Derived Classes:
Implements:
Constructors
Initializes a new instance of the Controller class.
public Controller()
Fields
Represents an empty result for controller operations.
public static EmptyResult Empty
Properties
Gets or sets a value indicating whether to process the next item in the controller chain.
public bool ProcessNext { get; set; }
true to process the next item; otherwise, false.
Methods
When overridden in a derived class, executes the core logic for the controller operation.
protected abstract ActionResult ExecuteCore(object key, object context)
The key identifying the operation.
contextobjectThe context for the operation.
Returns:An ActionResult representing the outcome of the operation.
Raises the PropertyChanged event for the specified property.
protected virtual void OnPropertyChanged(string propertyName)
The name of the property that changed.
Events
Occurs when a property value changes.
public event PropertyChangedEventHandler PropertyChanged
Implements: