Class PipelineViewModel
Kanban board pipeline viewmodel
Inheritance
System.Object
PipelineViewModel
Namespace: Simplic.Kanban.UI
Assembly: Simplic.Kanban.UI.dll
Syntax
public class PipelineViewModel : ViewModelBase
Constructors
| Improve this Doc View SourcePipelineViewModel(KanbanPipelineConfiguration)
Initialize viewmodel
Declaration
public PipelineViewModel(KanbanPipelineConfiguration configuration)
Parameters
Type | Name | Description |
---|---|---|
KanbanPipelineConfiguration | configuration |
Properties
| Improve this Doc View SourceDisplayName
Gets or sets the current display name
Declaration
public string DisplayName { get; set; }
Property Value
Type | Description |
---|---|
System.String |
MenuItems
Gets or sets all available menu items
Declaration
public ObservableCollection<MenuItemViewModel> MenuItems { get; }
Property Value
Type | Description |
---|---|
System.Collections.ObjectModel.ObservableCollection<MenuItemViewModel> |
Model
Gets the current configuration model
Declaration
public KanbanPipelineConfiguration Model { get; }
Property Value
Type | Description |
---|---|
KanbanPipelineConfiguration |
OrderId
Gets or sets the current index
Declaration
public int OrderId { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
SearchText
Gets or sets the search text
Declaration
public string SearchText { get; set; }
Property Value
Type | Description |
---|---|
System.String |
SelectedItems
Gets the selected items
Declaration
public ObservableCollection<object> SelectedItems { get; }
Property Value
Type | Description |
---|---|
System.Collections.ObjectModel.ObservableCollection<System.Object> |
Tiles
Gets or sets the collection of tiles
Declaration
public ObservableCollection<TileViewModel> Tiles { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.ObjectModel.ObservableCollection<TileViewModel> |
TilesView
Gets or sets the collection of tiles as System.Windows.Data.CollectionViewSource
Declaration
public CollectionViewSource TilesView { get; set; }
Property Value
Type | Description |
---|---|
System.Windows.Data.CollectionViewSource |