代码:

 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 }

 

相关文章:

  • 2021-08-10
  • 2022-02-18
  • 2022-12-23
  • 2022-12-23
  • 2021-10-01
  • 2022-02-21
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-08-28
  • 2022-12-23
  • 2021-06-21
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案