Skip to main content
Bar

ItemTriggerCondition.Property Property

Gets or sets the condition’s source property.

Namespace: DevExpress.Xpf.Bars

Assembly: DevExpress.Xpf.Core.v23.2.dll

NuGet Package: DevExpress.Wpf.Core

Declaration

public ItemProperty Property { get; set; }

Property Value

Type Description
ItemProperty

A DependencyProperty wrapper.

Remarks

The following code sample sets the BarCheckItem‘s Content property to On when the BarCheckItem is checked and enabled.

<dxb:BarCheckItem Content="Off">
    <dxb:BarCheckItem.Triggers>
        <dxb:ItemMultiTrigger>
            <dxb:ItemMultiTrigger.Conditions>
                <dxb:ItemTriggerCondition Property="IsChecked" 
                                          Value="True"/>
                <dxb:ItemTriggerCondition Property="IsEnabled" 
                                          Value="True"/>
            </dxb:ItemMultiTrigger.Conditions>
            <dxb:ItemSetter Property="Content" Value="On"/>
        </dxb:ItemMultiTrigger>
    </dxb:BarCheckItem.Triggers>
</dxb:BarCheckItem>

Bars - ItemTrigger Property property

See Also