Class FeedbackWindowModel
Logic for submit feedback window
Inheritance
System.Object
FeedbackWindowModel
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Phoenix
Assembly: Phoenix.dll
Syntax
public class FeedbackWindowModel
Constructors
View SourceFeedbackWindowModel(IPluginManager)
Initializes a new instance of the FeedbackWindowModel class.
Declaration
public FeedbackWindowModel(IPluginManager plugins)
Parameters
Type | Name | Description |
---|---|---|
IPluginManager | plugins |
Properties
View SourceCancelCommand
Gets the cancel command
Declaration
public DelegateCommand CancelCommand { get; }
Property Value
Type | Description |
---|---|
DelegateCommand |
Categories
Gets a collection of all the categories of feedback.
Declaration
public ObservableCollection<string> Categories { get; }
Property Value
Type | Description |
---|---|
System.Collections.ObjectModel.ObservableCollection<System.String> |
CloseAction
Gets or sets an action that closes the window.
Declaration
public Action CloseAction { get; set; }
Property Value
Type | Description |
---|---|
System.Action |
Comments
Gets or sets the feedback comments.
Declaration
public string Comments { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Modules
Gets the list of modules that are currently loaded.
Declaration
public ObservableCollection<PluginVersionInfo> Modules { get; }
Property Value
Type | Description |
---|---|
System.Collections.ObjectModel.ObservableCollection<PluginVersionInfo> |
SelectedCategory
Gets or sets the selected category.
Declaration
public string SelectedCategory { get; set; }
Property Value
Type | Description |
---|---|
System.String |
SelectedModule
Gets or sets the selected module.
Declaration
public PluginVersionInfo SelectedModule { get; set; }
Property Value
Type | Description |
---|---|
PluginVersionInfo |
SubmitFeedbackCommand
Gets the submit feedback command.
Declaration
public DelegateCommand SubmitFeedbackCommand { get; }
Property Value
Type | Description |
---|---|
DelegateCommand |