Class KanbanConfigurationEditorViewModel
Board configuration editor viewmodel
Inheritance
System.Object
KanbanConfigurationEditorViewModel
Implements
IWindowViewModel<KanbanConfiguration>
Namespace: Simplic.Kanban.UI
Assembly: Simplic.Kanban.UI.dll
Syntax
public class KanbanConfigurationEditorViewModel : ExtendableViewModel
Constructors
| Improve this Doc View SourceKanbanConfigurationEditorViewModel()
Initialize viewmodel
Declaration
public KanbanConfigurationEditorViewModel()
Properties
| Improve this Doc View SourceDateFieldName
Gets or sets the name of the date field
Declaration
public string DateFieldName { get; set; }
Property Value
Type | Description |
---|---|
System.String |
DateFormatListName
Gets or sets the name of the format list for the period
Declaration
public string DateFormatListName { get; set; }
Property Value
Type | Description |
---|---|
System.String |
DisplayName
Gets or sets the display name
Declaration
public string DisplayName { get; set; }
Property Value
Type | Description |
---|---|
System.String |
EnableEdit
Gets or sets whether editing is enabled
Declaration
public bool EnableEdit { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
InternName
Gets or sets the internal board name
Declaration
public string InternName { get; set; }
Property Value
Type | Description |
---|---|
System.String |
IsDefault
Gets or sets the default flag
Declaration
public bool IsDefault { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
IsGeneric
Gets or sets whether this is a generic board
Declaration
public bool IsGeneric { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
IsRemoveAllowed
Gets or sets whether it is allowed to remove kanban items
Declaration
public bool IsRemoveAllowed { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Model
Gets the configuration model
Declaration
public KanbanConfiguration Model { get; }
Property Value
Type | Description |
---|---|
KanbanConfiguration |
Pipelines
Gets a list of availables pipelines
Declaration
public IList<KanbanPipelineConfiguration> Pipelines { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IList<KanbanPipelineConfiguration> |
RefreshInterval
Gets or sets the refresh interval
Declaration
public int RefreshInterval { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
Methods
| Improve this Doc View SourceInitialize(KanbanConfiguration)
Load configuration
Declaration
public void Initialize(KanbanConfiguration model)
Parameters
Type | Name | Description |
---|---|---|
KanbanConfiguration | model | Configuration instance |
Implements
IWindowViewModel<>