Path派生于Shape

namespace System.Windows.Shapes
{

    public sealed class Path : Shape
    {
       // Path 派生于Shape
    }
}

Shape 派生于FrameworkElement

namespace System.Windows.Shapes
{
   //Shape 从FrameworkElement派生而来
    public abstract class Shape : FrameworkElement
    {
       
      
    

    }
}

FrameworkElement派生于UIElement

    public class FrameworkElement : UIElement, IFrameworkInputElement, IInputElement, ISupportInitialize, IQueryAmbient
    {
    }

学习参考链接

最为详尽的WPF类继承关系  https://www.cnblogs.com/liulun/p/4200917.html

学习WPF——WPF布局——初识布局容器 https://www.cnblogs.com/liulun/p/4200917.html

相关文章:

  • 2022-12-23
  • 2021-11-11
  • 2021-12-24
  • 2021-06-04
  • 2021-10-17
  • 2021-08-04
  • 2022-12-23
  • 2021-10-24
猜你喜欢
  • 2021-06-05
  • 2021-05-08
  • 2022-12-23
  • 2022-12-23
  • 2022-03-01
  • 2021-07-28
相关资源
相似解决方案