惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

V
Visual Studio Blog
Google DeepMind News
Google DeepMind News
V
V2EX
B
Blog RSS Feed
有赞技术团队
有赞技术团队
博客园 - Franky
美团技术团队
月光博客
月光博客
酷 壳 – CoolShell
酷 壳 – CoolShell
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
腾讯CDC
云风的 BLOG
云风的 BLOG
L
LangChain Blog
GbyAI
GbyAI
The Cloudflare Blog
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
C
Check Point Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Stack Overflow Blog
Stack Overflow Blog
博客园 - 【当耐特】
The Register - Security
The Register - Security
大猫的无限游戏
大猫的无限游戏
D
Docker
Vercel News
Vercel News
Blog — PlanetScale
Blog — PlanetScale
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - 司徒正美
人人都是产品经理
人人都是产品经理
雷峰网
雷峰网
阮一峰的网络日志
阮一峰的网络日志
P
Proofpoint News Feed
N
Netflix TechBlog - Medium
博客园_首页
A
About on SuperTechFans
J
Java Code Geeks
量子位
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
MongoDB | Blog
MongoDB | Blog
Recent Announcements
Recent Announcements
G
Google Developers Blog
小众软件
小众软件
博客园 - 叶小钗
WordPress大学
WordPress大学
博客园 - 聂微东
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Martin Fowler
Martin Fowler
S
SegmentFault 最新的问题
F
Full Disclosure
Jina AI
Jina AI
H
Help Net Security

博客园 - 做想做的人,做想做的事

baidu 浅谈WCF操作 OracleClient精简版 水晶报表注册码学习 朋友要的PPC软件包 C# 操作DTS[lkcn修改] 转Delphi 操作 DTS 下着电影或开着自己的服务器断网时电脑自动关闭 Maxsder.exe光驱病毒专杀工具 小代码测试杀毒软件的性能 IP地址 IFRAME清除工具 没事学学DELPHI~ 一个不错的图片素材网站 监控注册表键的改动,也可以监控文件夹 C++ 获得本机电话号码 不要再用TD了 单引号和双引号~ 孟子老兄BLOG的彩色光标 C#WINFORM
移动窗体C# - 做想做的人,做想做的事 - 博客园
做想做的人,做想做的事 · 2006-08-25 · via 博客园 - 做想做的人,做想做的事

    [DllImport("user32.dll")]
    
public static extern bool ReleaseCapture();
    [DllImport(
"user32.dll")]
    
public static extern bool SendMessage(IntPtr hwnd, int wMsg, int wParam, int lParam);
    
public const int WM_SYSCOMMAND = 0x0112;
    
public const int SC_MOVE = 0xF010;
    
public const int HTCAPTION = 0x0002;

MoveDown中:
ReleaseCapture();
             SendMessage(
this.Handle ,WM_SYSCOMMAND ,SC_MOVE +HTCAPTION ,0);