Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I make a bullet point appear in a label?

I would like to create a label with a bullet point. Here is what I tried but it doesn't seem to work at all:

<Label Text="\u2022 Hello" />

Can someone tell me what I am doing wrong?

like image 308
Alan2 Avatar asked Dec 18 '22 03:12

Alan2


1 Answers

Try

<Label Text="&#x2022; Hello" />
like image 157
Rudy Spano Avatar answered Feb 22 '23 05:02

Rudy Spano