To create a bulleted list in Microsoft Windows Phone App you have the following options:
- Write text inside your xaml file using
and elements
[sourcecode lang=”xml”]
<TextBlock TextWrapping="Wrap">
New features:<LineBreak/>
<Run>• No Ads</Run><LineBreak/>
<Run>• Message Encryption with Password for a double protection</Run><LineBreak/>
<Run>• Advanced settings</Run><LineBreak/>
<Run>• and more…</Run><LineBreak/>
</TextBlock>
[/sourcecode] - Write text inside you Resouces file (use SHIFT+RETURN to create new line)
[sourcecode lang=”text”]
New features:
• No Ads
• Message Encryption with Password for a double protection
• Advanced settings
• and more…
[/sourcecode] - Create a bulleted or numbered list in Blend
Did my HOW TO help you? Leave a reply.