Table of Contents

Interface IItemsSourceItem

Namespace
Ecng.ComponentModel
Assembly
Ecng.ComponentModel.dll

Represents an item used as a source for UI components, with properties for display, description, icon, and state.

public interface IItemsSourceItem : INotifyPropertyChangedEx, INotifyPropertyChanged
Inherited Members
Extension Methods

Properties

Description

Gets the description of the item.

string Description { get; }

Property Value

string

DisplayName

Gets the display name of the item.

string DisplayName { get; }

Property Value

string

Icon

Gets the URI of the icon representing the item.

Uri Icon { get; }

Property Value

Uri

IsObsolete

Gets a value indicating whether the item is marked as obsolete.

bool IsObsolete { get; }

Property Value

bool

Value

Gets the underlying value of the item.

object Value { get; }

Property Value

object