简体   繁体   中英

XamlReader error in WP8.1

I copy this code from MSDN Website

string xaml = "<Ellipse Name=\"EllipseAdded\" Width=\"300.5\" Height=\"200\" Fill=\"Red\"       \"http://schemas.microsoft.com/winfx/2006/xaml/presentation\"/>";
object ellipse = XamlReader.Load(xaml);

But I throw an error

The text associated with this error code could not be found. illegal 
qualified name character [Line: 1 Position: 68]

Please help me fix it. Thanks

请尝试以下XAML,看来xmlns丢失了。

string xaml = "<Ellipse Name=\"EllipseAdded\" Width=\"300.5\" Height=\"200\" Fill=\"Red\"       xmlns=\"http://schemas.microsoft.com/winfx/2006/xaml/presentation\"/>";

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM