是否有 UWP 控件和元素中所有继承的可视化?
Is there a visual of all inheritance in UWP controls and elements?
是否有某种图形(也许是树或其他东西)显示 UWP 中所有控件和元素的所有继承?就像从 object
作为根开始,然后扩展到包括从 UIElement
和 Control 和 FrameworkElement
这样的低级 类 到像 [= 这样的高级控件的所有内容13=]、GridView
和 Button
,包括介于两者之间的所有内容,如 BindingBase
、Panel
和 ButtonBase
?
没有描述所有 UWP 应用程序控件继承的图形。 UWP app中的控件非常多,具体的继承可以在控件的文档中获取。如果你想知道所有的关系,我们可以从所有的UWP控件介绍中自行了解。
在UWP中,Control class is the base class for many of the controls you add to an app and its UI, such as Button and UserControl, it also inherite from FrameworkElement, there is also a control TextBlock直接继承自[FrameworkElement]。
你可以获得一个list by function of the common XAML controls you can use in your app, and see UI controls and classes that support existing and custom controls in Windows.UI.Xaml.Controls Namespace.
是否有某种图形(也许是树或其他东西)显示 UWP 中所有控件和元素的所有继承?就像从 object
作为根开始,然后扩展到包括从 UIElement
和 Control 和 FrameworkElement
这样的低级 类 到像 [= 这样的高级控件的所有内容13=]、GridView
和 Button
,包括介于两者之间的所有内容,如 BindingBase
、Panel
和 ButtonBase
?
没有描述所有 UWP 应用程序控件继承的图形。 UWP app中的控件非常多,具体的继承可以在控件的文档中获取。如果你想知道所有的关系,我们可以从所有的UWP控件介绍中自行了解。
在UWP中,Control class is the base class for many of the controls you add to an app and its UI, such as Button and UserControl, it also inherite from FrameworkElement, there is also a control TextBlock直接继承自[FrameworkElement]。
你可以获得一个list by function of the common XAML controls you can use in your app, and see UI controls and classes that support existing and custom controls in Windows.UI.Xaml.Controls Namespace.