i'm binding data to a list view, and need to display a HTML string in a web browser. How would I do this? This is the list:
<ListBox Margin="0,0,-12,0" ItemsSource="{Binding}" Name="postsList">
<ListBox.ItemTemplate>
<DataTemplate>
<StackPanel Margin="0,0,0,17" Width="432">
<TextBlock Text="{Binding Path=name}" TextWrapping="NoWrap" Style="{StaticResource PhoneTextSubtleStyle}"/>
<TextBlock Text="{Binding Path=content}" TextWrapping="Wrap" Margin="12,-6,12,0" Style="{StaticResource PhoneTextNormalStyle}"/>
<phone:WebBrowser Source="{Binding Path=webContent}" Margin="12,-6,12,0" />
</StackPanel>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
TIA, ng93