Collection Source different DataContext from ListView using it
up vote
0
down vote
favorite
I have the following DataTemplate for a ListView that uses a StackPanel for its ItemsPanelTemplate.
<DataTemplate x:Key="DayTemplate">
<Border BorderBrush="Black"
BorderThickness="2"
CornerRadius="5"
Width="150"
Height="440"
Background="White">
<StackPanel Orientation="Vertical">
<Border BorderBrush="Black"
BorderThickness="0 0 0 5"
Background="White">
<StackPanel>
<StackPanel.ContextMenu>
<ContextMenu>
<MenuItem Header="Add Session"
Command="x:Static cmd:TimetableCommands.AddSession"/>
</ContextMenu>
</StackPanel.ContextMenu>
<TextBlock FontWeight="Bold"
TextAlignment="Center"
Text="Binding Path=DateInfo.Date, Mode=OneWay, Converter=StaticResource DateNoTime"/>
<TextBlock TextAlignment="Center"
FontWeight="Bold"
Text="Binding Path=DateInfo.DayOfWeek"/>
</StackPanel>
</Border>
<ListBox Name="lbSessions"
Background="Transparent"
HorizontalAlignment="Center"
Visibility="Visible"
ItemsSource="Binding Source=StaticResource SessionList"
ItemTemplate="StaticResource SessionTemplate">
<ListBox.ItemsPanel>
<ItemsPanelTemplate>
<StackPanel Orientation="Vertical"/>
</ItemsPanelTemplate>
</ListBox.ItemsPanel>
</ListBox>
</StackPanel>
</Border>
</DataTemplate>
I also have the following Collection Source that I'd like to use for the sorting functionality. It is in a seperate Resource Library, referenced correctly in the Resource Library where the DataTemplate is defined.
<CollectionViewSource Source="Binding Path=Sessions, Mode=OneWay"
x:Key="SessionList">
<CollectionViewSource.SortDescriptions>
<scm:SortDescription PropertyName="StartTime"/>
</CollectionViewSource.SortDescriptions>
</CollectionViewSource>
When run, no data is displayed, and the output window indicates that the collection source is trying to obtain the data for the list of items from the window level DataContext, not the DataContext the list uses (which is a couple of layers down from the Window ViewModel).
If I change the line
ItemsSource="Binding Source=StaticResource SessionList"
to
ItemsSource="Binding Path=Sessions"
It works fine, though I no longer have the sorting fuctionality of the Collection Source, which I really want to make use of to avoid having to write my own sorting code.
What's going on? and how can I set the correct DataContext on the Collection Source.
wpf data-binding collections
add a comment |
up vote
0
down vote
favorite
I have the following DataTemplate for a ListView that uses a StackPanel for its ItemsPanelTemplate.
<DataTemplate x:Key="DayTemplate">
<Border BorderBrush="Black"
BorderThickness="2"
CornerRadius="5"
Width="150"
Height="440"
Background="White">
<StackPanel Orientation="Vertical">
<Border BorderBrush="Black"
BorderThickness="0 0 0 5"
Background="White">
<StackPanel>
<StackPanel.ContextMenu>
<ContextMenu>
<MenuItem Header="Add Session"
Command="x:Static cmd:TimetableCommands.AddSession"/>
</ContextMenu>
</StackPanel.ContextMenu>
<TextBlock FontWeight="Bold"
TextAlignment="Center"
Text="Binding Path=DateInfo.Date, Mode=OneWay, Converter=StaticResource DateNoTime"/>
<TextBlock TextAlignment="Center"
FontWeight="Bold"
Text="Binding Path=DateInfo.DayOfWeek"/>
</StackPanel>
</Border>
<ListBox Name="lbSessions"
Background="Transparent"
HorizontalAlignment="Center"
Visibility="Visible"
ItemsSource="Binding Source=StaticResource SessionList"
ItemTemplate="StaticResource SessionTemplate">
<ListBox.ItemsPanel>
<ItemsPanelTemplate>
<StackPanel Orientation="Vertical"/>
</ItemsPanelTemplate>
</ListBox.ItemsPanel>
</ListBox>
</StackPanel>
</Border>
</DataTemplate>
I also have the following Collection Source that I'd like to use for the sorting functionality. It is in a seperate Resource Library, referenced correctly in the Resource Library where the DataTemplate is defined.
<CollectionViewSource Source="Binding Path=Sessions, Mode=OneWay"
x:Key="SessionList">
<CollectionViewSource.SortDescriptions>
<scm:SortDescription PropertyName="StartTime"/>
</CollectionViewSource.SortDescriptions>
</CollectionViewSource>
When run, no data is displayed, and the output window indicates that the collection source is trying to obtain the data for the list of items from the window level DataContext, not the DataContext the list uses (which is a couple of layers down from the Window ViewModel).
If I change the line
ItemsSource="Binding Source=StaticResource SessionList"
to
ItemsSource="Binding Path=Sessions"
It works fine, though I no longer have the sorting fuctionality of the Collection Source, which I really want to make use of to avoid having to write my own sorting code.
What's going on? and how can I set the correct DataContext on the Collection Source.
wpf data-binding collections
Move theCollectionViewSource
to the<DataTemplate.Resources>
.
– mm8
Nov 13 at 10:10
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I have the following DataTemplate for a ListView that uses a StackPanel for its ItemsPanelTemplate.
<DataTemplate x:Key="DayTemplate">
<Border BorderBrush="Black"
BorderThickness="2"
CornerRadius="5"
Width="150"
Height="440"
Background="White">
<StackPanel Orientation="Vertical">
<Border BorderBrush="Black"
BorderThickness="0 0 0 5"
Background="White">
<StackPanel>
<StackPanel.ContextMenu>
<ContextMenu>
<MenuItem Header="Add Session"
Command="x:Static cmd:TimetableCommands.AddSession"/>
</ContextMenu>
</StackPanel.ContextMenu>
<TextBlock FontWeight="Bold"
TextAlignment="Center"
Text="Binding Path=DateInfo.Date, Mode=OneWay, Converter=StaticResource DateNoTime"/>
<TextBlock TextAlignment="Center"
FontWeight="Bold"
Text="Binding Path=DateInfo.DayOfWeek"/>
</StackPanel>
</Border>
<ListBox Name="lbSessions"
Background="Transparent"
HorizontalAlignment="Center"
Visibility="Visible"
ItemsSource="Binding Source=StaticResource SessionList"
ItemTemplate="StaticResource SessionTemplate">
<ListBox.ItemsPanel>
<ItemsPanelTemplate>
<StackPanel Orientation="Vertical"/>
</ItemsPanelTemplate>
</ListBox.ItemsPanel>
</ListBox>
</StackPanel>
</Border>
</DataTemplate>
I also have the following Collection Source that I'd like to use for the sorting functionality. It is in a seperate Resource Library, referenced correctly in the Resource Library where the DataTemplate is defined.
<CollectionViewSource Source="Binding Path=Sessions, Mode=OneWay"
x:Key="SessionList">
<CollectionViewSource.SortDescriptions>
<scm:SortDescription PropertyName="StartTime"/>
</CollectionViewSource.SortDescriptions>
</CollectionViewSource>
When run, no data is displayed, and the output window indicates that the collection source is trying to obtain the data for the list of items from the window level DataContext, not the DataContext the list uses (which is a couple of layers down from the Window ViewModel).
If I change the line
ItemsSource="Binding Source=StaticResource SessionList"
to
ItemsSource="Binding Path=Sessions"
It works fine, though I no longer have the sorting fuctionality of the Collection Source, which I really want to make use of to avoid having to write my own sorting code.
What's going on? and how can I set the correct DataContext on the Collection Source.
wpf data-binding collections
I have the following DataTemplate for a ListView that uses a StackPanel for its ItemsPanelTemplate.
<DataTemplate x:Key="DayTemplate">
<Border BorderBrush="Black"
BorderThickness="2"
CornerRadius="5"
Width="150"
Height="440"
Background="White">
<StackPanel Orientation="Vertical">
<Border BorderBrush="Black"
BorderThickness="0 0 0 5"
Background="White">
<StackPanel>
<StackPanel.ContextMenu>
<ContextMenu>
<MenuItem Header="Add Session"
Command="x:Static cmd:TimetableCommands.AddSession"/>
</ContextMenu>
</StackPanel.ContextMenu>
<TextBlock FontWeight="Bold"
TextAlignment="Center"
Text="Binding Path=DateInfo.Date, Mode=OneWay, Converter=StaticResource DateNoTime"/>
<TextBlock TextAlignment="Center"
FontWeight="Bold"
Text="Binding Path=DateInfo.DayOfWeek"/>
</StackPanel>
</Border>
<ListBox Name="lbSessions"
Background="Transparent"
HorizontalAlignment="Center"
Visibility="Visible"
ItemsSource="Binding Source=StaticResource SessionList"
ItemTemplate="StaticResource SessionTemplate">
<ListBox.ItemsPanel>
<ItemsPanelTemplate>
<StackPanel Orientation="Vertical"/>
</ItemsPanelTemplate>
</ListBox.ItemsPanel>
</ListBox>
</StackPanel>
</Border>
</DataTemplate>
I also have the following Collection Source that I'd like to use for the sorting functionality. It is in a seperate Resource Library, referenced correctly in the Resource Library where the DataTemplate is defined.
<CollectionViewSource Source="Binding Path=Sessions, Mode=OneWay"
x:Key="SessionList">
<CollectionViewSource.SortDescriptions>
<scm:SortDescription PropertyName="StartTime"/>
</CollectionViewSource.SortDescriptions>
</CollectionViewSource>
When run, no data is displayed, and the output window indicates that the collection source is trying to obtain the data for the list of items from the window level DataContext, not the DataContext the list uses (which is a couple of layers down from the Window ViewModel).
If I change the line
ItemsSource="Binding Source=StaticResource SessionList"
to
ItemsSource="Binding Path=Sessions"
It works fine, though I no longer have the sorting fuctionality of the Collection Source, which I really want to make use of to avoid having to write my own sorting code.
What's going on? and how can I set the correct DataContext on the Collection Source.
wpf data-binding collections
wpf data-binding collections
asked Nov 10 at 13:19
James MacFarquhar
163
163
Move theCollectionViewSource
to the<DataTemplate.Resources>
.
– mm8
Nov 13 at 10:10
add a comment |
Move theCollectionViewSource
to the<DataTemplate.Resources>
.
– mm8
Nov 13 at 10:10
Move the
CollectionViewSource
to the <DataTemplate.Resources>
.– mm8
Nov 13 at 10:10
Move the
CollectionViewSource
to the <DataTemplate.Resources>
.– mm8
Nov 13 at 10:10
add a comment |
1 Answer
1
active
oldest
votes
up vote
0
down vote
Is there a reason you need to keep your CollectionViewSource in a separate ResourceDictionary?
Try nesting the CollectionViewSource in the ListBox's Items
<ListBox Name="lbSessions"
Background="Transparent"
HorizontalAlignment="Center"
Visibility="Visible"
ItemTemplate="StaticResource SessionTemplate">
<ListBox.Items>
<CollectionViewSource Source="Binding Path=Sessions, Mode=OneWay">
<CollectionViewSource.SortDescriptions>
<scm:SortDescription PropertyName="StartTime" />
</CollectionViewSource.SortDescriptions>
</CollectionViewSource>
</ListBox.Items>
</ListBox>
When I try that I get the following error in the output window: System.Windows.Data Error: 2 : Cannot find governing FrameworkElement or FrameworkContentElement for target element. BindingExpression:Path=Sessions; DataItem=null; target element is 'CollectionViewSource' (HashCode=55740512); target property is 'Source' (type 'Object')
– James MacFarquhar
Nov 11 at 20:45
Aiso it still has the data context of the window, not the List.
– James MacFarquhar
Nov 11 at 20:53
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
Is there a reason you need to keep your CollectionViewSource in a separate ResourceDictionary?
Try nesting the CollectionViewSource in the ListBox's Items
<ListBox Name="lbSessions"
Background="Transparent"
HorizontalAlignment="Center"
Visibility="Visible"
ItemTemplate="StaticResource SessionTemplate">
<ListBox.Items>
<CollectionViewSource Source="Binding Path=Sessions, Mode=OneWay">
<CollectionViewSource.SortDescriptions>
<scm:SortDescription PropertyName="StartTime" />
</CollectionViewSource.SortDescriptions>
</CollectionViewSource>
</ListBox.Items>
</ListBox>
When I try that I get the following error in the output window: System.Windows.Data Error: 2 : Cannot find governing FrameworkElement or FrameworkContentElement for target element. BindingExpression:Path=Sessions; DataItem=null; target element is 'CollectionViewSource' (HashCode=55740512); target property is 'Source' (type 'Object')
– James MacFarquhar
Nov 11 at 20:45
Aiso it still has the data context of the window, not the List.
– James MacFarquhar
Nov 11 at 20:53
add a comment |
up vote
0
down vote
Is there a reason you need to keep your CollectionViewSource in a separate ResourceDictionary?
Try nesting the CollectionViewSource in the ListBox's Items
<ListBox Name="lbSessions"
Background="Transparent"
HorizontalAlignment="Center"
Visibility="Visible"
ItemTemplate="StaticResource SessionTemplate">
<ListBox.Items>
<CollectionViewSource Source="Binding Path=Sessions, Mode=OneWay">
<CollectionViewSource.SortDescriptions>
<scm:SortDescription PropertyName="StartTime" />
</CollectionViewSource.SortDescriptions>
</CollectionViewSource>
</ListBox.Items>
</ListBox>
When I try that I get the following error in the output window: System.Windows.Data Error: 2 : Cannot find governing FrameworkElement or FrameworkContentElement for target element. BindingExpression:Path=Sessions; DataItem=null; target element is 'CollectionViewSource' (HashCode=55740512); target property is 'Source' (type 'Object')
– James MacFarquhar
Nov 11 at 20:45
Aiso it still has the data context of the window, not the List.
– James MacFarquhar
Nov 11 at 20:53
add a comment |
up vote
0
down vote
up vote
0
down vote
Is there a reason you need to keep your CollectionViewSource in a separate ResourceDictionary?
Try nesting the CollectionViewSource in the ListBox's Items
<ListBox Name="lbSessions"
Background="Transparent"
HorizontalAlignment="Center"
Visibility="Visible"
ItemTemplate="StaticResource SessionTemplate">
<ListBox.Items>
<CollectionViewSource Source="Binding Path=Sessions, Mode=OneWay">
<CollectionViewSource.SortDescriptions>
<scm:SortDescription PropertyName="StartTime" />
</CollectionViewSource.SortDescriptions>
</CollectionViewSource>
</ListBox.Items>
</ListBox>
Is there a reason you need to keep your CollectionViewSource in a separate ResourceDictionary?
Try nesting the CollectionViewSource in the ListBox's Items
<ListBox Name="lbSessions"
Background="Transparent"
HorizontalAlignment="Center"
Visibility="Visible"
ItemTemplate="StaticResource SessionTemplate">
<ListBox.Items>
<CollectionViewSource Source="Binding Path=Sessions, Mode=OneWay">
<CollectionViewSource.SortDescriptions>
<scm:SortDescription PropertyName="StartTime" />
</CollectionViewSource.SortDescriptions>
</CollectionViewSource>
</ListBox.Items>
</ListBox>
answered Nov 10 at 21:05
lavantgarde
13
13
When I try that I get the following error in the output window: System.Windows.Data Error: 2 : Cannot find governing FrameworkElement or FrameworkContentElement for target element. BindingExpression:Path=Sessions; DataItem=null; target element is 'CollectionViewSource' (HashCode=55740512); target property is 'Source' (type 'Object')
– James MacFarquhar
Nov 11 at 20:45
Aiso it still has the data context of the window, not the List.
– James MacFarquhar
Nov 11 at 20:53
add a comment |
When I try that I get the following error in the output window: System.Windows.Data Error: 2 : Cannot find governing FrameworkElement or FrameworkContentElement for target element. BindingExpression:Path=Sessions; DataItem=null; target element is 'CollectionViewSource' (HashCode=55740512); target property is 'Source' (type 'Object')
– James MacFarquhar
Nov 11 at 20:45
Aiso it still has the data context of the window, not the List.
– James MacFarquhar
Nov 11 at 20:53
When I try that I get the following error in the output window: System.Windows.Data Error: 2 : Cannot find governing FrameworkElement or FrameworkContentElement for target element. BindingExpression:Path=Sessions; DataItem=null; target element is 'CollectionViewSource' (HashCode=55740512); target property is 'Source' (type 'Object')
– James MacFarquhar
Nov 11 at 20:45
When I try that I get the following error in the output window: System.Windows.Data Error: 2 : Cannot find governing FrameworkElement or FrameworkContentElement for target element. BindingExpression:Path=Sessions; DataItem=null; target element is 'CollectionViewSource' (HashCode=55740512); target property is 'Source' (type 'Object')
– James MacFarquhar
Nov 11 at 20:45
Aiso it still has the data context of the window, not the List.
– James MacFarquhar
Nov 11 at 20:53
Aiso it still has the data context of the window, not the List.
– James MacFarquhar
Nov 11 at 20:53
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53239346%2fcollection-source-different-datacontext-from-listview-using-it%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Move the
CollectionViewSource
to the<DataTemplate.Resources>
.– mm8
Nov 13 at 10:10