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.
Assembly: System.Windows (in System.Windows.dll)
XMLNS for XAML: Not mapped to an xmlns.
'Declaration <TypeConverterAttribute(GetType(NullableBoolConverter))> _ Public Property IsSynchronizedWithCurrentItem As Nullable(Of Boolean)
<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; Nothing if the SelectedItem is synchronized with the current item only if the Selector uses a ICollectionView. The default is Nothing.
| Exception | Condition |
|---|---|
| ArgumentException | IsSynchronizedWithCurrentItem is set to true. |
Dependency property identifier field: IsSynchronizedWithCurrentItemProperty
Setting the IsSynchronizedWithCurrentItem property to true will cause an exception.
Show: