Show / Hide Table of Contents

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 Source

FeedbackWindowModel(IPluginManager)

Initializes a new instance of the FeedbackWindowModel class.

Declaration
public FeedbackWindowModel(IPluginManager plugins)
Parameters
Type Name Description
IPluginManager plugins

Properties

View Source

CancelCommand

Gets the cancel command

Declaration
public DelegateCommand CancelCommand { get; }
Property Value
Type Description
DelegateCommand
View Source

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>
View Source

CloseAction

Gets or sets an action that closes the window.

Declaration
public Action CloseAction { get; set; }
Property Value
Type Description
System.Action
View Source

Comments

Gets or sets the feedback comments.

Declaration
public string Comments { get; set; }
Property Value
Type Description
System.String
View Source

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>
View Source

SelectedCategory

Gets or sets the selected category.

Declaration
public string SelectedCategory { get; set; }
Property Value
Type Description
System.String
View Source

SelectedModule

Gets or sets the selected module.

Declaration
public PluginVersionInfo SelectedModule { get; set; }
Property Value
Type Description
PluginVersionInfo
View Source

SubmitFeedbackCommand

Gets the submit feedback command.

Declaration
public DelegateCommand SubmitFeedbackCommand { get; }
Property Value
Type Description
DelegateCommand
  • View Source
In This Article
Back to top Generated by DocFX