Selector.IsSynchronizedWithCurrentItem Property

[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]

Gets or sets a value that indicates whether the Selector should keep the SelectedItem synchronized with the current item in the Items property.

Namespace:  System.Windows.Controls.Primitives
Assembly:  System.Windows (in System.Windows.dll)
XMLNS for XAML: Not mapped to an xmlns.

Syntax

<TypeConverterAttribute(GetType(NullableBoolConverter))> _
Public Property IsSynchronizedWithCurrentItem As Nullable(Of Boolean)
[TypeConverterAttribute(typeof(NullableBoolConverter))]
public Nullable<bool> IsSynchronizedWithCurrentItem { get; set; }
<selector IsSynchronizedWithCurrentItem="False"/>
- or -
<object IsSynchronizedWithCurrentItem="{x:Null}"/>

Property Value

Type: System..::.Nullable<(Of <(Boolean>)>)
true if the SelectedItem is always synchronized with the current item; false if the SelectedItem is never synchronized with the current item; nullNothingnullptra null reference (Nothing in Visual Basic) if the SelectedItem is synchronized with the current item only if the Selector uses a ICollectionView. The default is nullNothingnullptra null reference (Nothing in Visual Basic).

Exceptions

Exception Condition
ArgumentException

IsSynchronizedWithCurrentItem is set to true.

Remarks

Dependency property identifier field: IsSynchronizedWithCurrentItemProperty

Setting the IsSynchronizedWithCurrentItem property to true will cause an exception.

Version Information

Windows Phone OS

Supported in: 8.1, 8.0, 7.1, 7.0

Platforms

Windows Phone

See Also

Reference

Selector Class

System.Windows.Controls.Primitives Namespace