TaskBoardCardModel
Basic ITaskBoardCardModel implementation - default model for tasks represented in a card-like fashion. Can be used to populate the ItemsSource of the RadTaskBoard. The default ItemTemplateSelector of the RadTaskBoard has predefined template for ITaskBoardCardModels.
Definition
Namespace:Telerik.Windows.Controls.TaskBoard
Assembly:Telerik.Windows.Controls.dll
Syntax:
public class TaskBoardCardModel : ViewModelBase, IDisposable, ITaskBoardCardModel, INotifyPropertyChanged
Inheritance: objectViewModelBaseTaskBoardCardModel
Implements:
Inherited Members
Constructors
Initializes a new instance of the TaskBoardCardModel class.
public TaskBoardCardModel()
Properties
Gets or sets the assignee of the task.
public object Assignee { get; set; }
Implements:
Gets or sets the category name of the task.
public string CategoryName { get; set; }
Implements:
Gets or sets the description of the task.
public string Description { get; set; }
Implements:
Gets or sets the icon path of the task.
public string IconPath { get; set; }
Implements:
Gets or sets a value indicating whether to show the category indicator in the card.
public bool ShowCategoryIndicator { get; set; }
Implements:
Gets the tags associated to the task.
public IList<object> Tags { get; }
Implements:
Methods
Gets a string representation of this card model.