Aracılığıyla paylaş


ISelectionItemProvider.IsSelected Özellik

Tanım

Bir öğenin seçilip seçilmediğini gösteren bir değer alır.

public:
 property bool IsSelected { bool get(); };
public bool IsSelected { get; }
member this.IsSelected : bool
Public ReadOnly Property IsSelected As Boolean

Özellik Değeri

true öğe seçiliyse; aksi takdirde false.

Örnekler

Aşağıdaki örnek kod, bu öğe seçili öğeler koleksiyonundaysa döndürür true .

/// <summary>
/// Specifies whether the item is selected.
/// </summary>
/// <remarks>
/// selectedItems is the collection of selected ListItems.
/// </remarks>
public bool IsSelected
{
    get
    {
        return selectedItems.Contains(this);
    }
}
''' <summary>
''' Specifies whether the item is selected.
''' </summary>
''' <remarks>
''' selectedItems is the collection of selected ListItems.
''' </remarks>
Public ReadOnly Property IsSelected() As Boolean Implements ISelectionItemProvider.IsSelected
    Get
        Return selectedItems.Contains(Me)
    End Get
End Property

Şunlara uygulanır

Ayrıca bkz.