首页 > Windows开发 > 详细

C# 点击窗口任意位置拖动

时间:2015-04-26 06:55:35      阅读:310      评论:0      收藏:0      [点我收藏+]

代码:

 1 using System;
 2 using System.Collections.Generic;
 3 using System.ComponentModel;
 4 using System.Data;
 5 using System.Drawing;
 6 using System.Linq;
 7 using System.Runtime.InteropServices;
 8 using System.Text;
 9 using System.Threading.Tasks;
10 using System.Windows.Forms;
11 
12 namespace FreeNotes
13 {
14     public partial class kk : Form
15     {
16         public kk()
17         {
18             InitializeComponent();
19         }
20 
21         [DllImport("user32.dll")]
22         public static extern bool ReleaseCapture();
23 
24         [DllImport("user32.dll")]
25         public static extern bool SendMessage(IntPtr hwnd, int wMsg, int wParam, int lParam);
26 
27         private void kk_MouseDown(object sender, MouseEventArgs e)
28         {
29             ReleaseCapture();
30             SendMessage(this.Handle, 0x0112, 0xF012, 0);
31         } 
32     }
33 }

 

C# 点击窗口任意位置拖动

原文:http://www.cnblogs.com/KTblog/p/4457212.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!