知足常乐,享受生活

2008年6月11日

摘要: C# Form Animation with Windows API.NET Animation ControlC# GameDev: Simple AnimationAn Animation Component using C#C#如何实现渐显窗口[原创] using System.Runtime.InteropServices; public class Win32 {  public con... 阅读全文
posted @ 2008-06-11 09:23 OnlyLiu 阅读(4534) 评论(0) 推荐(0) 编辑
 
摘要: // inside the control public event EventHandler MyEvent; private void MyButton_OnClick(object sender, EventArgs e) { if(MyEvent != null) MyEvent(this, e); // or whatever args you want } // and inside ... 阅读全文
posted @ 2008-06-11 09:13 OnlyLiu 阅读(3051) 评论(0) 推荐(0) 编辑