C#重写窗体的方法

本文介绍了一个使用C#实现的无边框窗体,并通过调用API实现窗体的拖动功能。该方法重写了窗体的OnMouseDown事件,利用DllImport导入user32.dll中的ReleaseCapture和SendMessage函数,从而实现对窗体的无边界拖拽。
摘要由CSDN通过智能技术生成
 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.Text;
 8 using System.Threading.Tasks;
 9 using System.Windows.Forms;
10 using System.Runtime.InteropServices;
11 
12 namespace Mform
13 {
14     public partial class Form1 : Form
15     {
16         [DllImport("user32.dll")]
17         public static extern bool ReleaseCapture();
18         [DllImport("user32.dll")]
19         public static extern bool SendMessage(IntPtr hwnd, int wMsg, int wParam, int lParam);
20         public Form1()
21         {
22             InitializeComponent();
23         }
24 
25         protected override void OnLoad(EventArgs e)
26         {
27             this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;//设置窗体默认属性
28             base.OnLoad(e);
29         }
30         protected override void OnMouseDown(MouseEventArgs e)
31         {
32             ReleaseCapture();
33             SendMessage(this.Handle, 0x0112, 0xF010 + 0x0002, 0);//调用Api
34             base.OnMouseDown(e);
35         }
36     }
37 }

此方法重写窗体的

转载于:https://www.cnblogs.com/zhangruifeng/p/5750697.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值