Master Detail same View binding controls

Posted by pipelinecache on Stack Overflow See other posts from Stack Overflow or by pipelinecache
Published on 2010-06-03T07:56:13Z Indexed on 2010/06/03 11:34 UTC
Read the original article Hit count: 237

Filed under:
|
|

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;
    }
}

© Stack Overflow or respective owner

Related posts about wpf

Related posts about databinding