WINFORM Borderless form Shadow and move

Source: Internet
Author: User

Form Mobile API
[DllImport ("User32.dll")]
public static extern bool ReleaseCapture ();
[DllImport ("User32.dll")]
public static extern bool SendMessage (INTPTR hwnd, int wmsg, int wParam, int iparam);
public const int wm_syscommand = 0x0112;
public const int sc_move = 0xf010;
public const int htcaption = 0x0002;
[DllImport ("user32")]
private static extern int SendMessage (INTPTR hwnd, int wmsg, int wParam, IntPtr lParam);
Private Const int wm_setredraw = 0xB;

private void Form1_mousedown (object sender, MouseEventArgs e)
{
if (this. WindowState = = formwindowstate.normal)
{
ReleaseCapture ();
SendMessage (this. Handle, Wm_syscommand, Sc_move + htcaption, 0);
}
}

Form Shadows

1. Add a namespace:
Using System.Runtime.InteropServices;

2. Define constant values and functions:
Private Const int Cs_dropshadow = 0x20000;
Private Const int Gcl_style = (-26);
[DllImport ("user32.dll", CharSet = CharSet.Auto)]
public static extern int Setclasslong (INTPTR hwnd, int nIndex, int dwnewlong);
[DllImport ("user32.dll", CharSet = CharSet.Auto)]
public static extern int Getclasslong (INTPTR hwnd, int nIndex);


3, the construction method under the reference:
Setclasslong (this. Handle, Gcl_style, Getclasslong (this. Handle, Gcl_style) | Cs_dropshadow);

WINFORM Borderless form Shadow and move

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.