VB.NET - Modern Login Winform Design UI - Guna UI Framework | C#, VB.NET

Поділитися
Вставка

КОМЕНТАРІ • 6

  • @Maximilianokid
    @Maximilianokid 4 роки тому

    Wow impresiónante

  • @yudonoputroutomo7925
    @yudonoputroutomo7925 4 роки тому

    Keren bang

  • @AndresIxcajocLopez
    @AndresIxcajocLopez 3 роки тому +1

    donde estan los recursos?

  • @vandoan330
    @vandoan330 3 роки тому +1

    May I have those photos, please?

  • @SpekterTP
    @SpekterTP 3 роки тому

    how are you able to move the windows form with the formborderstyle set to none?

    • @nightcoredragun3419
      @nightcoredragun3419 2 роки тому +2

      You have to code it.
      You need to put that code in the object you wanna grab to move the form ->
      if (e.Button == MouseButtons.Left)
      {
      ReleaseCapture();
      SendMessage(Handle, WM_NCLBUTTONDOWN, HT_CAPTION, 0);
      }
      And the next one in your -> public partial class YourFormame : Form
      public const int WM_NCLBUTTONDOWN = 0xA1;
      public const int HT_CAPTION = 0x2;
      [DllImportAttribute("user32.dll")]
      public static extern int SendMessage(IntPtr hWnd, int Msg, int wParam, int lParam);
      [DllImportAttribute("user32.dll")]
      public static extern bool ReleaseCapture();