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.










share|improve this question





















  • Move the CollectionViewSource to the <DataTemplate.Resources>.
    – mm8
    Nov 13 at 10:10














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.










share|improve this question





















  • Move the CollectionViewSource to the <DataTemplate.Resources>.
    – mm8
    Nov 13 at 10:10












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.










share|improve this question













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






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Nov 10 at 13:19









James MacFarquhar

163




163











  • 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















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












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>





share|improve this answer




















  • 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










Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















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

























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>





share|improve this answer




















  • 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














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>





share|improve this answer




















  • 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












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>





share|improve this answer












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>






share|improve this answer












share|improve this answer



share|improve this answer










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
















  • 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

















draft saved

draft discarded
















































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.




draft saved


draft discarded














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





















































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







Popular posts from this blog

How to how show current date and time by default on contact form 7 in WordPress without taking input from user in datetimepicker

Syphilis

Darth Vader #20