Я пытался заставить Drag and Drop работать между двумя элементами управления ListBox. Но как-то подобрать предмет невозможно.
Может быть, у вас есть подсказка, чтобы я заработал
Код xaml My User Control выглядит следующим образом:
<UserControl.Resources>
<DataTemplate x:Key="ItemTemplate">
<StackPanel Orientation="Horizontal">
<Image Width="20" Height="20" Source="{Binding Path=pic}"></Image>
<TextBlock Text="{Binding Path=name}"></TextBlock>
</StackPanel>
</DataTemplate>
</UserControl.Resources>
<StackPanel>
<Grid x:Name="LayoutRoot" Height="352" Width="435">
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<RowDefinition Height="300"/>
<RowDefinition Height="40"/>
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="200"/>
<ColumnDefinition Width="30"/>
<ColumnDefinition Width="200"/>
<ColumnDefinition Width="5*" />
</Grid.ColumnDefinitions>
<TextBlock Text="All Friends" Grid.Column="0" Grid.Row="0"/>
<controlsToolkit:ListBoxDragDropTarget Grid.Column="0" Grid.Row="1" AllowDrop="true" HorizontalContentAlignment="Stretch" VerticalContentAlignment="Stretch">
<ListBox x:Name="FriendsListBox" SelectionMode="Extended" ItemTemplate="{StaticResource ItemTemplate}">
<ListBox.ItemsPanel>
<ItemsPanelTemplate>
<StackPanel/>
</ItemsPanelTemplate>
</ListBox.ItemsPanel>
</ListBox>
</controlsToolkit:ListBoxDragDropTarget>
<TextBlock Text="Friends with access to room" Grid.Column="2" Grid.Row="0"/>
<controlsToolkit:ListBoxDragDropTarget Grid.Column="2" Grid.Row="1" AllowDrop="true" HorizontalContentAlignment="Stretch" VerticalContentAlignment="Stretch">
<ListBox x:Name="AllowedFriendsListBox" SelectionMode="Extended" ItemTemplate="{StaticResource ItemTemplate}">
<ListBox.ItemsPanel>
<ItemsPanelTemplate>
<StackPanel/>
</ItemsPanelTemplate>
</ListBox.ItemsPanel>
</ListBox>
</controlsToolkit:ListBoxDragDropTarget>
</Grid>
</StackPanel>
Я привязываю свой первый ListBox к списку друзей-друзей из Facebook.
Должна быть возможность перетаскивать друзей из одного списка в другой.
Надеюсь, вы мне поможете. Заранее спасибо