Class 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.
Inherited Members
Namespace: Telerik.Windows.Controls.TaskBoard
Assembly: Telerik.Windows.Controls.dll
Syntax
public class TaskBoardCardModel : ViewModelBase, IDisposable, ITaskBoardCardModel, INotifyPropertyChanged
Constructors
TaskBoardCardModel()
Properties
Assignee
Gets or sets the assignee of the task.
Declaration
public object Assignee { get; set; }
Property Value
System.Object
|
Implements
CategoryName
Gets or sets the category name of the task.
Declaration
public string CategoryName { get; set; }
Property Value
System.String
|
Implements
Description
Gets or sets the description of the task.
Declaration
public string Description { get; set; }
Property Value
System.String
|
Implements
IconPath
Gets or sets the icon path of the task.
Declaration
public string IconPath { get; set; }
Property Value
System.String
|
Implements
Id
Gets or sets the id of the task.
Declaration
public string Id { get; set; }
Property Value
System.String
|
Implements
ShowCategoryIndicator
Gets or sets a value indicating whether to show the category indicator in the card.
Declaration
public bool ShowCategoryIndicator { get; set; }
Property Value
System.Boolean
|
Implements
State
Gets or sets the state of the task.
Declaration
public string State { get; set; }
Property Value
System.String
|
Implements
Tags
Gets the tags associated to the task.
Declaration
public IList<object> Tags { get; }
Property Value
System.Collections.Generic.IList<System.Object>
|
Implements
Title
Gets or sets the title of the task.
Declaration
public string Title { get; set; }
Property Value
System.String
|
Implements
Methods
ToString()
Gets a string representation of this card model.
Declaration
public override string ToString()
Returns
System.String
|