As to my question(Title), I can already bind selected items from my listBox to my uniformGrid. BUT even if I already selected many items the UniformGrid only shows 1 item.

Could you please tell me how to do this?

or is it possible to fill the UniformGrid with the ListBox items selected?

or What are the other options to transfer(bind) and show my selected items out from my ListBox?

or I'll just go and walk through the code if you have similar examples.

To be exact, my ListBox items are images BUT doesnt need to be images only. I just want to know how to bind selected items to a Grid or anything that will display my ListBox selected items.

Thank You

XAML:

<Window
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" mc:Ignorable="d"
x:Class="SampleBinding.MainWindow"
x:Name="Window"
Title="MainWindow"
Width="640" Height="480">
<Window.Resources>
    <DataTemplate x:Key="ItemTemplate">
        <StackPanel>
            <Image Source="{Binding myImages}" HorizontalAlignment="Left" Height="64" Width="64"/>
        </StackPanel>
    </DataTemplate>
</Window.Resources>

<Grid x:Name="LayoutRoot" DataContext="{Binding Source={StaticResource SampleDataSource}}">
    <ListBox x:Name="listBox" HorizontalAlignment="Left" ItemTemplate="{DynamicResource ItemTemplate}" ItemsSource="{Binding Collection}" Margin="19,40,0,102" Width="200" SelectionMode="Multiple"/>
    <UniformGrid x:Name="uGrid" DataContext="{Binding SelectedItem, ElementName=listBox}" Margin="273,40,78,132" d:DataContext="{Binding Collection[0]}" Grid.Row="2" Grid.Column="2">
        <Image x:Name="imageItem" Source="{Binding myImages}" HorizontalAlignment="Left" VerticalAlignment="Top" Width="100" Height="100"/>
    </UniformGrid>
</Grid>

link|improve this question

75% accept rate
feedback

1 Answer

I see that you bind grids DataContext to ListBox SelectedItem, which is always one. That's why you see only one item in grid. ( I guess it's always the last selected). To resolve this in more accurate MVVM way I, personally, would add a new observable collection ListBoxSelecetedItems, bind it to DataGrid, and on every ListBox selection add new selecteditem to that collection. If you unselect an item from list box, remove it from collection.

Hope this helps.

link|improve this answer
Honesly, I dont have much knowledge about MVVM approach. I only have the basic understanding of c# and XAML. Can you Show me some code example using ObservableCollection base on my problem? Im more on design using expression blend but not good at binding but willing to go further and explore – user1078782 Dec 15 '11 at 8:01
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.