NameValueItem<T>
Class
Name and value object useful for data binding operations.
Definition
Namespace:Telerik.Windows.Controls.ScheduleView
Assembly:Telerik.Windows.Controls.ScheduleView.dll
Type Parameters:
T
Type of value.
Syntax:
C#
public class NameValueItem<T> : INotifyPropertyChanged
Inheritance: objectNameValueItem<T>
Implements:
Constructors
Initializes a new instance of the NameValueItem<T> class.
Initializes a new instance of the NameValueItem<T> class.
Properties
Gets or sets a value indicating whether this instance is selected.
C#
public bool IsSelected { get; set; }
True if this instance is selected; otherwise, false.
Gets the value.
C#
public T Value { get; }
The value.
Methods
Raises the property changed.
Events
Occurs when a property value changes.
C#
public event PropertyChangedEventHandler PropertyChanged
Implements: