views:

34

answers:

1

Hi everyone,

say I have a List View with ItemControls. And a Details part that shows the selected Item from List View. Both are in the same xaml page. I tried everything to accomplish it, but what do I miss?

<!-- // List -->
<ItemsControl ItemsSource="{Binding Path=Model, ElementName=SomeListViewControl, Mode=Default}" SnapsToDevicePixels="True" Focusable="False" IsTabStop="False">
    <ItemsControl.ItemTemplate>
            <DataTemplate>
                    <SomeListView:SomeListItemControl x:Name=listItem/>
                </DataTemplate>
        </ItemsControl.ItemTemplate>
</ItemsControl>

<!-- // Details -->
<Label Content="Begindatum" FontSize="16" VerticalAlignment="Center" Grid.Row="1" Margin="2,0,0,0"/>
<TextBox x:Name="Begindatum" Grid.Column="1" Grid.Row="1" Text="{Binding Path=BeginDate, ElementName=listItem,Converter={StaticResource DateTimeConverter}, ConverterParameter=dd-MM-yyyy}" IsEnabled="False" Style="{DynamicResource TextBoxStyle}" MaxLength="30"/>


public event EventHandler<DataEventArgs<SomeEntity>> OnOpenSomething;

public ObservableCollection<SomeEntity> Model
{
            get { return (ObservableCollection<SomeEntity>)GetValue(ModelProperty); }
            set
        {
                Model.CollectionChanged -= new NotifyCollectionChangedEventHandler(Model_CollectionChanged);
                SetValue(ModelProperty, value);
                Model.CollectionChanged += new NotifyCollectionChangedEventHandler(Model_CollectionChanged);
                UpdateVisualState();
    }
}

public static readonly DependencyProperty ModelProperty = DependencyProperty.Register("Model", typeof(ObservableCollection<SomeEntity>), typeof(SomeListView), new UIPropertyMetadata(new ObservableCollection<SomeEntity>(), new PropertyChangedCallback(ChangedModel)));


private static void ChangedModel(DependencyObject source, DependencyPropertyChangedEventArgs e)
{
    SomeListView someListView = source as SomeListView;

    if (someListView.Model == null)
    {
        return;
    }

    CollectionView cv = (CollectionView)CollectionViewSource.GetDefaultView(someListView.Model);

}

private void Model_CollectionChanged(object sender, NotifyCollectionChangedEventArgs e)
{
    if (Model == null)
    {
        return;
    }
}
+1  A: 

Do not use an ItemsControl - ItemsControl does not have a SelectedItem property - and therefore you cannot determine which one is selected.

Use a listbox instead and then in the detail section make a binding like so: ... DataContext="{Binding SelectedItem,ElementName=ListboxName}" ... where ListboxName is the Name property of the Listbox you use.

Goblin