开发者

Master Detail same View binding controls

say I have a ListView with an 开发者_C百科ItemControl. And a Details part that shows the selected Item from the ListView. 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;
    }
}


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.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜