I need to use an ItemTemplate that will make the items look as similar as possible to the Messaging Hub on Windows Phone. Currently, I have this code as my DataTemplate, but I can't get the TextBlock to align to the right side of the horizontal StackPanel.
<StackPanel Orientation="Right">
<StackPanel>
<TextBlock Text="{Binding IP}"/>
<TextBlock Text="{Binding LastMessage}"/>
</StackPanel>
<TextBlock HorizontalAlignment="Right" Text="{Binding Time}"/>
</StackPanel>
An image of the Messaging Hub on Windows Phone: