I Can't Write Arabic text in the XAML file

后端 未结 3 2008
生来不讨喜
生来不讨喜 2021-01-18 19:19

when i built the project the following error happened:

3条回答
  •  遥遥无期
    2021-01-18 19:39

    To Change the encoding try this

    var pi = xmldoc.createProcessingInstruction("xml",
                                    " version='1.0' encoding='UTF-8'");
    xmldoc.appendChild(pi);
    

    Check out the link below. http://msdn.microsoft.com/en-us/library/aa468560.aspx

提交回复
热议问题