Class TaskBoardColumn
Represents a column definition for tasks. It is either defined in XAML or autogenerated when GroupMemberPath is used.
Inheritance
Namespace: Telerik.Windows.Controls
Assembly: Telerik.Windows.Controls.dll
Syntax
public class TaskBoardColumn : Object, INotifyPropertyChanged
Constructors
TaskBoardColumn()
Declaration
public TaskBoardColumn()
Properties
GroupName
Gets or sets the group name used to organize the items in columns.
Declaration
public object GroupName { get; set; }
Property Value
System.Object
|
Header
Gets or sets the content to be displayed as a column header.
Declaration
public object Header { get; set; }
Property Value
System.Object
|
HeaderTemplate
Gets or sets the content template to be displayed as a column header.
Declaration
public DataTemplate HeaderTemplate { get; set; }
Property Value
System.Windows.DataTemplate
|
IsExpanded
Gets or sets a value that indicates whether the column is expanded.
Declaration
public bool IsExpanded { get; set; }
Property Value
System.Boolean
|
Items
Gets the collection used to generate the content of TaskBoardColumnContainer.
Declaration
public ObservableCollection<object> Items { get; }
Property Value
System.Collections.ObjectModel.ObservableCollection<System.Object>
|
Methods
ToString()
Declaration
public override string ToString()
Returns
System.String
|
Events
PropertyChanged
Occurs when a property value changes.
Declaration
public event PropertyChangedEventHandler PropertyChanged
Event Type
System.ComponentModel.PropertyChangedEventHandler
|