New to Telerik UI for WPFStart a free 30-day trial

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

Constructors

Initializes a new instance of the TaskBoardCardModel class.

C#
public TaskBoardCardModel()

Properties

Gets or sets the assignee of the task.

C#
public object Assignee { get; set; }

Implements: ITaskBoardCardModel.Assignee

Gets or sets the category name of the task.

C#
public string CategoryName { get; set; }

Implements: ITaskBoardCardModel.CategoryName

Gets or sets the description of the task.

C#
public string Description { get; set; }

Implements: ITaskBoardCardModel.Description

Gets or sets the icon path of the task.

C#
public string IconPath { get; set; }

Implements: ITaskBoardCardModel.IconPath

Gets or sets the id of the task.

C#
public string Id { get; set; }

Implements: ITaskBoardCardModel.Id

Gets or sets a value indicating whether to show the category indicator in the card.

C#
public bool ShowCategoryIndicator { get; set; }

Implements: ITaskBoardCardModel.ShowCategoryIndicator

Gets or sets the state of the task.

C#
public string State { get; set; }

Implements: ITaskBoardCardModel.State

Gets the tags associated to the task.

C#
public IList<object> Tags { get; }

Implements: ITaskBoardCardModel.Tags

Gets or sets the title of the task.

C#
public string Title { get; set; }

Implements: ITaskBoardCardModel.Title

Methods

Gets a string representation of this card model.

C#
public override string ToString()
Returns:

string

Overrides: object.ToString()