首页 > Windows开发 > 详细

C# Wpf Shape类继承关系

时间:2017-11-10 19:44:15      阅读:345      评论:0      收藏:0      [点我收藏+]

 

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

C# Wpf Shape类继承关系

原文:http://www.cnblogs.com/gradual/p/7815823.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!