Class KanbanWorkflow
Represents a workflow in the Kanban control, defining the category and allowed transitions for Kanban card items.
Inheritance
Namespace: Syncfusion.UI.Xaml.Kanban
Assembly: Syncfusion.Kanban.WinUI.dll
Syntax
public class KanbanWorkflow : DependencyObject
Constructors
KanbanWorkflow()
Initializes a new instance of the KanbanWorkflow class.
Declaration
public KanbanWorkflow()
Fields
AllowedTransitionsProperty
Using a DependencyProperty as the backing store for AllowedTransitions. This enables animation, styling, binding, etc...
Declaration
public static readonly DependencyProperty AllowedTransitionsProperty
Field Value
Type |
---|
Microsoft.UI.Xaml.DependencyProperty |
CategoryProperty
Using a DependencyProperty as the backing store for Category. This enables animation, styling, binding, etc...
Declaration
public static readonly DependencyProperty CategoryProperty
Field Value
Type |
---|
Microsoft.UI.Xaml.DependencyProperty |
Properties
AllowedTransitions
Gets or sets the list of allowed transitions for the KanbanWorkflow.
Declaration
public List<string> AllowedTransitions { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<System.String> | The default value of AllowedTransitions is an empty list. |
Remarks
This property defines the valid workflow stages that a kanban card can move to from its current state.
See Also
Category
Gets or sets the category associated with the KanbanWorkflow.
Declaration
public object Category { get; set; }
Property Value
Type | Description |
---|---|
System.Object | The default value of Category is null. |
Remarks
The category represents the current state of a kanban item within a specific workflow.