On WP7.5 I created a datacontext like this:
this.DataContext = new { One = listOne, Two = listTwo};
On my XAML code I tried this:
<TextBlock Text="{Binding listOne.m_strTypeTiers}" Style="{StaticResource PhoneTextNormalStyle}" />
<TextBlock Text="{Binding listTwo.m_strTypeTiers}" Style="{StaticResource PhoneTextNormalStyle}" />
My textbox are empty. I think my binding syntax has a mistake.