码迷,mamicode.com
首页 > Windows程序 > 详细

C# Wpf Shape类继承关系

时间:2017-11-10 20:10:07      阅读:232      评论:0      收藏:0      [点我收藏+]

标签:ref   c#   title   www   shape   发布   类继承   nbsp   log   

 

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类继承关系

标签:ref   c#   title   www   shape   发布   类继承   nbsp   log   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!