diff options
| author | lempamo <[email protected]> | 2017-08-29 22:36:15 -0400 |
|---|---|---|
| committer | GitHub <[email protected]> | 2017-08-29 22:36:15 -0400 |
| commit | f1e358854383925aaf471c368cb01fe049c65c07 (patch) | |
| tree | e9ac99508869680b2712219596a44f406ae2d860 /Histacom2.Engine/Template/WinXP.cs | |
| parent | d4d94f85a6424e4d21cecccec21b0e78860431d6 (diff) | |
| parent | 59505ed4dd131afbd18c0b3e660c8c72815ba5a2 (diff) | |
| download | histacom2-f1e358854383925aaf471c368cb01fe049c65c07.tar.gz histacom2-f1e358854383925aaf471c368cb01fe049c65c07.tar.bz2 histacom2-f1e358854383925aaf471c368cb01fe049c65c07.zip | |
Merge pull request #155 from AShifter/master
Master
Diffstat (limited to 'Histacom2.Engine/Template/WinXP.cs')
| -rw-r--r-- | Histacom2.Engine/Template/WinXP.cs | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/Histacom2.Engine/Template/WinXP.cs b/Histacom2.Engine/Template/WinXP.cs new file mode 100644 index 0000000..86b222e --- /dev/null +++ b/Histacom2.Engine/Template/WinXP.cs @@ -0,0 +1,26 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows.Forms; + + +namespace Histacom2.Engine.Template +{ + public partial class WinXP : Form + { + public WinXP() + { + InitializeComponent(); + } + + private void WinXP_Load(object sender, EventArgs e) + { + + } + } +} |
