XAML 是否包含 html 标签的子集?
我知道 XAML 中有很多标签在 html 中具有相似的名称。这是因为 XAML 包含 html 包含的所有标签,还是只是巧合?
I know that there are lot of tags in XAML that have simmilar names in html. Is this because XAML contains all of the tags that html does, or is it just coincidence?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
XAML 和 HTML 没有完全不同的地方。 XAML 标记映射到 .NET 对象和属性。
有一些 XAML 标记的命名类似于模仿文档功能,例如
、
,但我实际上无法想象许多完全相同的。你确定你指的不是XHTML吗?No XAML and HTML are completely different. XAML tags map to .NET objects and properties.
There are some XAML tags named similarly to mimic document functionality, like
<Paragraph>
,<Bold>
, but the top of my head, I actually can't think of many that are exactly the same. Are you sure you aren't refering to XHTML?