Class KanbanModel
Provides base data model for KanbanCardItem. It includes properties which used to visualize the information in visual.
Inheritance
System.Object
KanbanModel
Namespace: Syncfusion.UI.Xaml.Kanban
Assembly: Syncfusion.SfKanban.WPF.dll
Syntax
public class KanbanModel : Object, IKanbanModel, INotifyPropertyChanged
Constructors
KanbanModel()
Declaration
public KanbanModel()
Properties
Assignee
Gets or sets the value which indicates the card owner.
Declaration
public string Assignee { get; set; }
Property Value
Type |
---|
System.String |
Category
Gets or sets the object which indicates card's section.
Declaration
public object Category { get; set; }
Property Value
Type |
---|
System.Object |
ColorKey
Gets or sets the object that used to set indication color for card.
Declaration
public object ColorKey { get; set; }
Property Value
Type |
---|
System.Object |
Description
Gets or sets the string value which is used to display card's content.
Declaration
public string Description { get; set; }
Property Value
Type |
---|
System.String |
ID
Gets or sets the string value which indicates identity number of the card.
Declaration
public string ID { get; set; }
Property Value
Type |
---|
System.String |
ImageURL
Gets or sets the Uri value which used to display profile picture of card.
Declaration
public Uri ImageURL { get; set; }
Property Value
Type |
---|
System.Uri |
Tags
Gets or sets the string array which indicates tag value of the card.
Declaration
public string[] Tags { get; set; }
Property Value
Type |
---|
System.String[] |
Title
Gets or sets the string value which is used to display card's header string.
Declaration
public string Title { get; set; }
Property Value
Type |
---|
System.String |
Events
PropertyChanged
Occurs when a property value changes.
Declaration
public event PropertyChangedEventHandler PropertyChanged
Event Type
Type |
---|
System.ComponentModel.PropertyChangedEventHandler |
Implements
System.ComponentModel.INotifyPropertyChanged