WPF   --- xmln 两个重要的命名空间
更新:HHH   时间:2023-1-7


    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"

这个命名空间引用了一些.Net框架类库如 System;System.Controls;.........

    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"

这个命名空间对应 XAML 语言解析相关的程序集。如 x:Class 解决xmal到后台C#类的对应问题。

返回编程语言教程...