using AppLauncher.Windows.Forms;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Drawing.Drawing2D;
using System.Drawing.Text;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace AppLauncher
{
public partial class MainForm : AForm
public MainForm() : base()
InitializeComponent();
}
//private void Form1_MouseDown(object sender, MouseEventArgs e)
//{
// const int WM_NCLBUTTONDOWN = 0xA1;
// const int HT_CAPTION = 0x2;
// this.Capture = false;
// Message msg = Message.Create(this.Handle, WM_NCLBUTTONDOWN, (IntPtr)HT_CAPTION, IntPtr.Zero);
// WndProc(ref msg);
//}