[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

microsoft.public.dotnet.framework

dot net 3.0 encoding problem with wpf

Rolf Welskes

8/20/2008 3:50:00 PM

Hello,
if I for example have in xaml:

<TextBlock>öööüüüüßßß</TextBlock>

with special german characters,

I get compiler error, "Invalid character in the given encoding".

I have not set any encoding.

The same is in buttons, and other controls.

So what have I to set in Visual Studio, or anywhere, to use german
characters in xaml.

Thank you for any help.

Rolf Welskes


1 Answer

Ryan S. Thiele

8/21/2008 9:10:00 PM

0

Hi Ron,

This works on the .NET 3.5. However, you may try to use a different format.

<TextBlock Text="öööüüüüßßß"></TextBlock>

Hope this helps.