
学习笔记
old_dustman
这个作者很懒,什么都没留下…
展开
-
温故而知新
@理解static//static变量static成员不能通过对象实例来访问,它必须通过类名来访问。实质上,被声明为static的变量是全局变量。当声明类的对象时,不用拷贝static变量,而是类的所有实例共享一个static变量。static变量在类被装载时初始化。如果没有明确的初始化值,数值类型将被初始化为0,对象引用初始化为空,bool类型变量初始化为false。因此static变量总有一个原创 2005-11-14 22:35:00 · 1226 阅读 · 0 评论 -
Event design
1. If you want to provides data about the ItemHover event,So the new class ItemHoverEvnetArgs extends EventArgs. Like as follows: public class ItemHoverEventArgs : EventArgs2. declar原创 2006-02-23 15:39:00 · 774 阅读 · 0 评论 -
Custom Draw services
Custom Draw services allow the custom to draw the control on his own, which provide by many common controls. As follows:Header controls List-view controls Rebar controls Toolbar controls To原创 2006-02-23 15:29:00 · 813 阅读 · 0 评论 -
Timer in C#
服务器计时器、Windows 计时器和线程计时器 在 Visual Studio .NET 和 .NET Framework 中有三种计时器控件:基于服务器的计时器,位于“工具箱”的“组件”选项卡上;基于 Windows 的标准计时器,位于“工具箱”的“Windows 窗体”选项卡上,以及仅可在编程时使用的线程计原创 2006-02-23 15:51:00 · 853 阅读 · 0 评论