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