我有一个带有节点的TreeView,所以当我点击其中一个节点时,我将使用绑定到Observable Collection的项目更新ListBox,这样可以正常工作。接下来,当我在树视图中单击另一个节点时,我将不得不使用不同的数据(也是Obsv.Collection)更新ListBox。有关如何进行此操作的任何想法?
<Resources>
<DataTemplate x:Key="clipsource">
<StackPanel>
<Image Name="img" Width="125" Height="70" Margin="1,0" Source="{Binding Path=Path, Converter= {x:Static l:UriToThumbnailConverter.Instance}}"/>
<TextBlock FlowDirection="LeftToRight" FontFamily="Arial" FontSize="12" Text="{Binding Path = DisplayClipName}"/>
</StackPanel>
</DataTemplate>
</Resources>
<Grid Height="Auto" Grid.Column="2" VerticalAlignment="Stretch" x:Name="RightPane_grid" Margin="2,0,0,0" KeyboardNavigation.DirectionalNavigation="None">
<Grid.RowDefinitions>
<RowDefinition Height="21.205"/>
<RowDefinition Height="*"/>
</Grid.RowDefinitions>
<Rectangle Fill="#FF232323" Stroke="#FF000000" RadiusX="3" RadiusY="3" Margin="0,0,0,0" x:Name="Right_Pane_bkg" Grid.ColumnSpan="1" Grid.RowSpan="2" KeyboardNavigation.DirectionalNavigation="None"/>
<ListBox Name="ListBox1" SelectionMode="Extended" ScrollViewer.HorizontalScrollBarVisibility="Disabled" ScrollViewer.VerticalScrollBarVisibility="Auto" Grid.Row="0" Background="#FF3B3B3B" Margin="2,25,2,2" ItemsSource="{Binding}" ItemTemplate="{StaticResource clipsource}">
<ListBox.ItemsPanel>
<ItemsPanelTemplate>
<WrapPanel />
</ItemsPanelTemplate>
</ListBox.ItemsPanel>
<ListBox.ItemContainerStyle>
<Style TargetType="{x:Type ListBoxItem}">
<Setter Property="IsSelected" Value="{Binding Path=IsSelected, Mode=TwoWay}"/>
</Style>
</ListBox.ItemContainerStyle>
</ListBox>
</Grid>
代码背后:
private void Handle_Click1(object sender, MouseButtonEventArgs e) // tree view Item
{
ListBox1.DataContext = Clips Items;
// Clips Items is an Obs v. Collection
}
我有另一个Obs v Collection Still Items,我必须将它绑定到List框以显示另一个视图
答案 0 :(得分:0)
您可以尝试以下操作:
<TreeView Name="MyTreeView">
<TreeView.ItemContainerStyle>
<Style TargetType="{x:Type TreeViewItem}">
<Setter Property="Header" Value="{Binding Path=Name}"/>
<Setter Property="ItemsSource" Value="{Binding Path=SomeItems}"/>
</Style>
</TreeView.ItemContainerStyle>
</TreeView>
<ListBox ItemsSource="{Binding ElementName=MyTreeView, Path=SelectedItem.SomeItems}">
<ListBox.ItemContainerStyle>
<Style TargetType="{x:Type ListBoxItem}">
<Setter Property="Content" Value="{Binding Path=Name}"/>
</Style>
</ListBox.ItemContainerStyle>
</ListBox>
Binding将使用路径SomeItems
从TreeView中的SelectedItem检索ListBox中显示的项目。这假设SelectedItem是这样的:
public class MyTreeViewItem
{
public string Name { get; private set; }
public ObservableCollection<MyTreeViewItem> SomeItems { get; private set; }
public MyTreeViewItem(string name)
{
if (name == null)
throw new ArgumentNullException("name");
this.SomeItems = new ObservableCollection<MyTreeViewItem>();
this.Name = name;
}
}
当您在TreeView中选择一个项目时,子项将显示在ListBox中。
修改强>
要填充TreeView,请使用以下代码:
MyTreeViewItem a = new MyTreeViewItem("A");
a.SomeItems.Add(new MyTreeViewItem("A1"));
a.SomeItems.Add(new MyTreeViewItem("A2"));
a.SomeItems.Add(new MyTreeViewItem("A3"));
MyTreeViewItem b = new MyTreeViewItem("B");
b.SomeItems.Add(new MyTreeViewItem("B1"));
b.SomeItems.Add(new MyTreeViewItem("B2"));
b.SomeItems.Add(new MyTreeViewItem("B3"));
this.MyTreeView.ItemsSource = new MyTreeViewItem[] { a, b };