Reputation: 11
I used Visual Studio 2022 preview 17.2 MAUI. I tried to add Copyright symbol to Label and is not working.
<Label Text="symbol of copy right is not working"/>
Exception when Build:
the "xamlctask" task failed unexpectedly (MSB4018)
Upvotes: 1
Views: 545
Reputation: 1249
I also had this issue and it didn't work even with TextType="Html"
until I found that ©
also returns copyright symbol. And it works on VS 17.6.
Ex:
<Label Text="© 2023"/>
Returns © 2023
Upvotes: 2
Reputation: 1630
Use the HTML code
©
So..
<Label Text="© 2022 My Name" TextType="Html" />
Upvotes: 0