Formulario Transparente en C# 2019|Fácil y Sencillo



Formulario Transparente en C# 2019|Fácil y Sencillo

Formulario Transparente en C# 2019|Fácil y Sencillo

les dejo los código para poder mover el formulario con el mouse aquí en la descripción.

[DllImport(“user32.DLL”, EntryPoint = “ReleaseCapture”)]
private extern static void ReleaseCapture();

[DllImport(“user32.DLL”, EntryPoint = “SendMessage”)]
private extern static void SendMessage(System.IntPtr hWnd, int wMsg, int wParam, int lParam);

————————-
move formulario

ReleaseCapture();
SendMessage(this.Handle, 0x112, 0xf012, 0);

Comments are closed.