Class CommandDescription
Base class for commands supported by map provider.
Inheritance
Namespace: Telerik.Windows.Controls.Map
Assembly: Telerik.Windows.Controls.DataVisualization.dll
Syntax
public class CommandDescription : Object, INotifyPropertyChanged
Constructors
CommandDescription()
Declaration
public CommandDescription()
Properties
Command
Gets or sets the command that will be executed in response to UI action.
Declaration
public ICommand Command { get; set; }
Property Value
System.Windows.Input.ICommand
|
CommandParameter
Gets or sets the command parameter associated with the respective command.
Declaration
public object CommandParameter { get; set; }
Property Value
System.Object
|
DataTemplate
Gets or sets data template will be used to represent command in UI.
Declaration
public DataTemplate DataTemplate { get; set; }
Property Value
System.Windows.DataTemplate
|
ImageUri
Gets or sets URI of the image is used in the map source button data template.
Declaration
public Uri ImageUri { get; set; }
Property Value
System.Uri
|
IsAllowed
Gets or sets a value indicating whether this command is allowed.
Declaration
public bool IsAllowed { get; set; }
Property Value
System.Boolean
|
IsSelected
Gets or sets a value indicating whether this command is selected initially.
Declaration
public bool IsSelected { get; set; }
Property Value
System.Boolean
|
Events
PropertyChanged
Occurs when a property value changes.
Declaration
public event PropertyChangedEventHandler PropertyChanged
Event Type
System.ComponentModel.PropertyChangedEventHandler
|