我想在运行时异步加载一个松散的xaml文件。我在msdn文档中读到xaml reader因此在xaml文件的根元素上需要属性'x:SynchronousMode =“Async”'。如果我在根元素上定义此属性,Visual Studio 2012告诉我,该属性未包含在XAML命名空间中。因此,显示我的xaml文件的可视化表示的设计器窗口除了“无效标记”外没有显示任何内容。
以下是我的松散xaml文件的第一行:
<?xml version="1.0" encoding="utf-8" ?>
<DockPanel xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
x:SynchronousMode="Async" LastChildFill="True">
有什么问题?
问候, 凯文