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 }
  • 相关阅读:
    线程queue
    定时器
    event模拟数据库链接
    最速下降法(梯度下降法)
    神经网络中的反向传播算法
    批量学习和在线学习的区别
    LMS算法
    粒子群算法
    遗传算法
    logistic回归
  • 原文地址:https://www.cnblogs.com/KTblog/p/4457212.html
Copyright © 2011-2022 走看看