C#学习笔记
肉食者
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Control的继承关系
System.Object System.MarshalByRefObject System.ComponentModel.Component System.Windows.Forms.Control System.Windows.Forms.ScrollableControl System.Windows....原创 2019-03-29 16:29:17 · 335 阅读 · 0 评论 -
C# 用户控件与自定义控件的区别
C# WinForm 中, 用户控件(User Control):继承自 UserControl,主要用于开发 Container 控件,Container控件可以添加其他Controls控件。 自定义控件(Custom Control):继承自 Control,主要用于开发windows控件的最基本的类,比如 Text,Button 控件。 ...原创 2019-03-29 00:53:44 · 4115 阅读 · 0 评论
分享