Mercurial > pub > ImplabNet
comparison Implab.Fx.Test/Sample/MainForm.cs @ 5:f2559580b481
implemented overlay helpers and some animation heplers improvments
| author | cin |
|---|---|
| date | Tue, 24 Sep 2013 03:31:24 +0400 |
| parents | |
| children |
comparison
equal
deleted
inserted
replaced
| 4:381095ad0a69 | 5:f2559580b481 |
|---|---|
| 1 using System; | |
| 2 using System.Collections.Generic; | |
| 3 using System.ComponentModel; | |
| 4 using System.Data; | |
| 5 using System.Drawing; | |
| 6 using System.Linq; | |
| 7 using System.Text; | |
| 8 using System.Windows.Forms; | |
| 9 | |
| 10 namespace Implab.Fx.Test.Sample | |
| 11 { | |
| 12 public partial class MainForm : Form | |
| 13 { | |
| 14 public event EventHandler ButtonEvent; | |
| 15 | |
| 16 public MainForm() | |
| 17 { | |
| 18 InitializeComponent(); | |
| 19 } | |
| 20 | |
| 21 private void button1_Click(object sender, EventArgs e) | |
| 22 { | |
| 23 EventHandler temp = ButtonEvent; | |
| 24 if (temp != null) | |
| 25 { | |
| 26 temp(this,new EventArgs()); | |
| 27 } | |
| 28 } | |
| 29 } | |
| 30 } |
