Class KanbanModel
Provides base data model for KanbanCardItem. It includes properties which used to visualize the information in visual.
Inheritance
System.Object
KanbanModel
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Syncfusion.UI.Xaml.Kanban
Assembly: Syncfusion.SfKanban.WPF.dll
Syntax
public class KanbanModel : 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 | Description |
---|---|
System.String |
Category
Gets or sets the object which indicates card's section.
Declaration
public object Category { get; set; }
Property Value
Type | Description |
---|---|
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 | Description |
---|---|
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 | Description |
---|---|
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 | Description |
---|---|
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 | Description |
---|---|
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 | Description |
---|---|
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 | Description |
---|---|
System.String |
Events
PropertyChanged
Occurs when a property value changes.
Declaration
public event PropertyChangedEventHandler PropertyChanged
Event Type
Type | Description |
---|---|
System.ComponentModel.PropertyChangedEventHandler |
Implements
System.ComponentModel.INotifyPropertyChanged