Class ResponseAction
Represents a class that wraps command logic for the response actions feature of messages.
Inherited Members
Namespace: Telerik.Windows.Controls.ConversationalUI
Assembly: Telerik.Windows.Controls.ConversationalUI.dll
Syntax
public abstract class ResponseAction : ViewModelBase, INotifyPropertyChanged, IDisposable
Constructors
ResponseAction(MessageBase)
Initializes a new instance of the ResponseAction class.
Declaration
protected ResponseAction(MessageBase message)
Parameters
MessageBase
message
|
Properties
Command
Gets the command associated with the response action.
Declaration
public abstract ICommand Command { get; }
Property Value
System.Windows.Input.ICommand
|
CommandButtonVisibility
Gets or sets the visibility of the button that visualizes the command.
Declaration
public Visibility CommandButtonVisibility { get; set; }
Property Value
System.Windows.Visibility
|
Message
Gets or sets the associated message.
Declaration
protected MessageBase Message { get; set; }
Property Value
MessageBase
|
Text
Gets or sets the response action's text.
Declaration
public string Text { get; set; }
Property Value
System.String
|