Histacom2/Histacom2.Engine/Template/WinXP.cs
AShifter 59505ed4dd 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.
2017-08-29 20:33:11 -06:00

26 lines
469 B
C#

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)
{
}
}
}