46 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			46 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
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();
 | 
						|
 | 
						|
            pictureBox1.MouseDown += windowMoveControl_MouseDown;
 | 
						|
            pictureBox1.MouseUp += windowMoveControl_MouseUp;
 | 
						|
            pictureBox1.MouseMove += windowMoveControl_MouseMove;
 | 
						|
 | 
						|
        }
 | 
						|
 | 
						|
 | 
						|
 | 
						|
 | 
						|
        //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);
 | 
						|
        //}
 | 
						|
 | 
						|
    }
 | 
						|
}
 |