다음을 통해 공유


Selector.IsSynchronizedWithCurrentItem 속성

정의

Selector Items 속성의 현재 항목과 동기화된 SelectedItem 유지할지 여부를 나타내는 값을 가져오거나 설정합니다.

public:
 property Nullable<bool> IsSynchronizedWithCurrentItem { Nullable<bool> get(); void set(Nullable<bool> value); };
[System.ComponentModel.Bindable(true)]
[System.ComponentModel.TypeConverter("System.Windows.NullableBoolConverter, PresentationFramework, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, Custom=null")]
[System.Windows.Localizability(System.Windows.LocalizationCategory.NeverLocalize)]
public bool? IsSynchronizedWithCurrentItem { get; set; }
[System.ComponentModel.Bindable(true)]
[System.Windows.Localizability(System.Windows.LocalizationCategory.NeverLocalize)]
[System.ComponentModel.TypeConverter("System.Windows.NullableBoolConverter, PresentationFramework, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, Custom=null")]
public bool? IsSynchronizedWithCurrentItem { get; set; }
[<System.ComponentModel.Bindable(true)>]
[<System.ComponentModel.TypeConverter("System.Windows.NullableBoolConverter, PresentationFramework, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, Custom=null")>]
[<System.Windows.Localizability(System.Windows.LocalizationCategory.NeverLocalize)>]
member this.IsSynchronizedWithCurrentItem : Nullable<bool> with get, set
[<System.ComponentModel.Bindable(true)>]
[<System.Windows.Localizability(System.Windows.LocalizationCategory.NeverLocalize)>]
[<System.ComponentModel.TypeConverter("System.Windows.NullableBoolConverter, PresentationFramework, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, Custom=null")>]
member this.IsSynchronizedWithCurrentItem : Nullable<bool> with get, set
Public Property IsSynchronizedWithCurrentItem As Nullable(Of Boolean)

속성 값

SelectedItem 항상 ItemCollection현재 항목과 동기화되는지 true; SelectedItem 현재 항목과 동기화되지 않는지 false. SelectorCollectionView사용하는 경우에만 SelectedItem 현재 항목과 동기화되는지를 null. 기본값은 null.

특성

예제

다음 예제에서는 두 개의 ListBox 컨트롤을 동일한 ItemsSource바인딩합니다. IsSynchronizedWithCurrentItemListBoxtrue 설정되므로 선택한 항목은 항상 두 컨트롤에 대해 동일합니다.

<XmlDataProvider x:Key="Employees" XPath="/Employees/*">
  <x:XData>
    <Employees xmlns="">
      <Employee Name="Terry Adams" Type="FTE" EmployeeNumber="1" />
      <Employee Name="Claire O'Donnell" Type="FTE" EmployeeNumber="12345" />
      <Employee Name="Palle Peterson" Type="FTE" EmployeeNumber="5678" />
      <Employee Name="Amy E. Alberts" Type="CSG" EmployeeNumber="99222" />
      <Employee Name="Stefan Hesse" Type="Vendor" EmployeeNumber="-" />
    </Employees>
  </x:XData>
</XmlDataProvider>

<DataTemplate x:Key="EmployeeItemTemplate">
  <TextBlock Text="{Binding XPath=@Name}" />
</DataTemplate>
<ListBox Name="employeeListBox1"
         ItemsSource="{Binding Source={StaticResource Employees}}"
         ItemTemplate="{StaticResource EmployeeItemTemplate}"
         IsSynchronizedWithCurrentItem="True"/>

<ListBox Name="employeeListBox2"
         ItemsSource="{Binding Source={StaticResource Employees}}"
         ItemTemplate="{StaticResource EmployeeItemTemplate}"
         IsSynchronizedWithCurrentItem="True"/>

설명

선택한 항목이 항상 ItemCollectionCurrentItem 속성에 해당하도록 IsSynchronizedWithCurrentItem 속성을 true 설정할 수 있습니다. 예를 들어 ItemsSource 속성이 동일한 원본으로 설정된 두 개의 ListBox 컨트롤이 있다고 가정합니다. 각 ListBox 선택한 항목이 동일한지 확인하려면 두 목록 상자에서 trueIsSynchronizedWithCurrentItem 설정합니다.

XAML 특성 사용

< 개체IsSynchronizedWithCurrentItem="Boolean"/>

-또는-

< 개체IsSynchronizedWithCurrentItem="{}"/>

종속성 속성 정보

식별자 필드 IsSynchronizedWithCurrentItemProperty
true 설정된 메타데이터 속성 없음

적용 대상