【发布时间】:2009-08-07 18:03:50
【问题描述】:
在每个 XAML 文档中,都有一个或多个命名空间声明。即:
<Window x:Class="WindowsApplication1.Window1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Window1 Height="300">
声明采用 URL 的形式,让我问:运行时是否真的在应用程序加载时从这些 URL 中检索信息?如果没有互联网连接会怎样?
【问题讨论】:
标签: wpf xml xaml namespaces