zoukankan      html  css  js  c++  java
  • C# 点击窗口任意位置拖动

    代码:

     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 }
  • 相关阅读:
    2018.11.26
    JS数组
    JS2018.12.26
    手机游戏客户端架构设计
    IAP应用内购买
    cocos2dx如何优化内存的应用
    Homebrew
    OS X 文档
    Apple推送通知服务教程
    ajax分页
  • 原文地址:https://www.cnblogs.com/KTblog/p/4457212.html
Copyright © 2011-2022 走看看