Is ListHeaderTemplate or ListHeader ( for the LongListSelector control) bindable? I tried to use
ListHeader="{Binding SomeProperty}" or the sample template below:
<DataTemplate x:Key="movieListHeader">
<TextBlock Text="{Binding SomeProperty"}
Margin="8,-24,0,0"
Style="{StaticResource PhoneTextTitle1Style}"/>
</DataTemplate>
Both are not working....
Comments: ** Comment from web user: aemami99 **
ListHeader="{Binding SomeProperty}" or the sample template below:
<DataTemplate x:Key="movieListHeader">
<TextBlock Text="{Binding SomeProperty"}
Margin="8,-24,0,0"
Style="{StaticResource PhoneTextTitle1Style}"/>
</DataTemplate>
Both are not working....
Comments: ** Comment from web user: aemami99 **
Just grabbed the Nov bits... it looks like if you have a binding in your DataTemplate you use for your ListFooterTemplate, it won't work by itself.
However, if you add the following: ListFooter="{Binding}" in combination with setting the ListFooterTemplate, that will work.
Have not tried this out with ListHeader yet