23

私は WPFListBoxコントロールを持っていて、それItemsSourceをアイテム オブジェクトのコレクションに設定しています。オブジェクトのインスタンスを として設定せずに、 のプロパティを対応する項目オブジェクトのIsSelectedプロパティにバインドするにはどうすればよいですか?ListBoxItemSelectedBinding.Source

4

2 に答える 2

49

ItemContainerStyle をオーバーライドするだけです:

   <ListBox ItemsSource="...">
     <ListBox.ItemContainerStyle>
      <Style TargetType="{x:Type ListBoxItem}">
        <Setter Property="IsSelected" Value="{Binding Selected}"/>
      </Style>
     </ListBox.ItemContainerStyle>
    </ListBox>

ところで、dr.WPF: ItemsControl: A to Z のすばらしい記事をご覧になることをお勧めします。

お役に立てれば。

于 2009-12-09T17:51:08.957 に答える
3

私はコードで解決策を探していたので、これがその翻訳です。

System.Windows.Controls.ListBox innerListBox = new System.Windows.Controls.ListBox();

//The source is a collection of my item objects.
innerListBox.ItemsSource = this.Manager.ItemManagers;

//Create a binding that we will add to a setter
System.Windows.Data.Binding binding = new System.Windows.Data.Binding();
//The path to the property on your object
binding.Path = new System.Windows.PropertyPath("Selected"); 
//I was in need of two way binding
binding.Mode = System.Windows.Data.BindingMode.TwoWay;

//Create a setter that we will add to a style
System.Windows.Setter setter = new System.Windows.Setter();
//The IsSelected DP is the property of interest on the ListBoxItem
setter.Property = System.Windows.Controls.ListBoxItem.IsSelectedProperty;
setter.Value = binding;

//Create a style
System.Windows.Style style = new System.Windows.Style();
style.TargetType = typeof(System.Windows.Controls.ListBoxItem);
style.Setters.Add(setter);

//Overwrite the current ItemContainerStyle of the ListBox with the new style 
innerListBox.ItemContainerStyle = style;
于 2009-12-10T15:22:26.103 に答える