Class CustomInput
A custom input that is required to the user before the Config is started.
Implements
System.ComponentModel.INotifyPropertyChanged
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: RuriLib.ViewModels
Assembly: RuriLib.dll
Syntax
public class CustomInput : ViewModelBase, INotifyPropertyChanged
Constructors
| Improve this Doc View SourceCustomInput(Int32)
Creates a CustomInput given an id.
Declaration
public CustomInput(int id)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | id | A unique id |
Properties
| Improve this Doc View SourceDescription
The description of what the user needs to enter.
Declaration
public string Description { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Id
The id of the Custom Input.
Declaration
public int Id { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
VariableName
The name of the variable to create basing on the value provided by the user.
Declaration
public string VariableName { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Implements
System.ComponentModel.INotifyPropertyChanged