本文介绍了Silverlight名称空间问题的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

两个问题

1.在XAML中,为什么在特定名称之前或之后在xmlns名称空间关键字(例如..
)之后使用x:.

xmlns:x ="http://abc"



<矩形x:name ="abc" xmlns:x =#unknown">

================================================== =========

2.为什么XAML中的名称空间是一些以http://开头的网址,以及为什么不是某些标识符,例如C ++中的使用名称空间myNameSpace"

为什么我们在XAML中使用以"http://"

Two Questions

1. In XAML, why do we use x: before a specific name or after the xmlns namespace keyword like..


xmlns : x = "http://abc"

and

<rectangle x:name="abc" xmlns:x="#unknown">

===========================================================

2. why the namespace in XAML is some web address starting with http:// and why not some identifier like in C++ as "using namespace myNameSpace"

why do we have namespace in XAML something starting with "http://"

推荐答案

xmlns:MyNamespace="clr-namespace:MyProject.Controls;assembly=MyProject">



这篇关于Silverlight名称空间问题的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-14 22:57