TaskBoardColumn
Class
Represents a column definition for tasks. It is either defined in XAML or autogenerated when GroupMemberPath is used.
Definition
Namespace:Telerik.Windows.Controls
Assembly:Telerik.Windows.Controls.dll
Syntax:
C#
public class TaskBoardColumn : INotifyPropertyChanged
Inheritance: objectTaskBoardColumn
Implements:
Constructors
C#
public TaskBoardColumn()
Properties
Gets or sets the group name used to organize the items in columns.
C#
public object GroupName { get; set; }
Gets or sets the content to be displayed as a column header.
C#
public object Header { get; set; }
HeaderTemplate
DataTemplate
Gets or sets the content template to be displayed as a column header.
C#
public DataTemplate HeaderTemplate { get; set; }
Gets or sets a value that indicates whether the column is expanded.
C#
public bool IsExpanded { get; set; }
Gets the collection used to generate the content of TaskBoardColumnContainer.
C#
public ObservableCollection<object> Items { get; }
Methods
Events
Occurs when a property value changes.
C#
public event PropertyChangedEventHandler PropertyChanged
Implements: