aboutsummaryrefslogtreecommitdiff
path: root/Histacom2.Engine/Template/WinXP.cs
diff options
context:
space:
mode:
authorAShifter <[email protected]>2017-08-29 20:33:11 -0600
committerAShifter <[email protected]>2017-08-29 20:33:11 -0600
commit59505ed4dd131afbd18c0b3e660c8c72815ba5a2 (patch)
treee9ac99508869680b2712219596a44f406ae2d860 /Histacom2.Engine/Template/WinXP.cs
parentb1689dea36e46933280bfcc0d186746dd6210c0f (diff)
downloadhistacom2-59505ed4dd131afbd18c0b3e660c8c72815ba5a2.tar.gz
histacom2-59505ed4dd131afbd18c0b3e660c8c72815ba5a2.tar.bz2
histacom2-59505ed4dd131afbd18c0b3e660c8c72815ba5a2.zip
Add WinXP and MultiOS WM
WM is currently working, though is in the middle of modification to work with multiple operating systems. Windows XP window template as well as resources have also been added, though window moving code has not been added yet.
Diffstat (limited to 'Histacom2.Engine/Template/WinXP.cs')
-rw-r--r--Histacom2.Engine/Template/WinXP.cs26
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)
+ {
+
+ }
+ }
+}