示例#1
0
文件: Gadget.cs 项目: fkpwolf/tinyFan
 public Gadget()
 {
     this.window = new GadgetWindow();
       this.window.Paint += delegate(object sender, PaintEventArgs e) {
     OnPaint(e);
       };
 }
示例#2
0
 public Gadget()
 {
     this.window        = new GadgetWindow();
     this.window.Paint += delegate(object sender, PaintEventArgs e) {
         OnPaint(e);
     };
 }
示例#3
0
 public Gadget()
 {
     this.window = new GadgetWindow();
     CreateBuffer();
 }