How to Maximize VS Fullscreen Application | C# Windows Form

Sdílet
Vložit
  • čas přidán 26. 07. 2024
  • Create the functions of maximize and fullscreen into your winform application
    Unicode Characters for (minimize, maximize, restore down, fullscreen):
    Close X
    Minimize _
    Maximize 1 (font family: Webdings)
    Restore Down 2 (font family: Webdings)
    Fullscreen ⛶
    Project Files:
    drive.google.com/file/d/1yYOG...
    Same Video for WPF:
    • How to Maximize VS Ful...
    Software Used To Tutorial:
    -Visual Studios 2019 Community Edition
    Project Description:
    -Based on Windows Form C#.
  • Věda a technologie

Komentáře • 13

  • @jesuspereiraoficial
    @jesuspereiraoficial Před 3 lety +2

    Very cool tip bro. Thanks!

  • @Lockris85
    @Lockris85 Před rokem +2

    Hello!
    This is very useful information. But it can be made shorter with instructions : this.MaximumSize = new Size(SystemInformation.WorkingArea.Width , SystemInformation.WorkingArea.Height );
    in the Form initialization or loading and classic toggle : if (this.WindowState == FormWindowState.Maximized) { this.WindowState = FormWindowState.Normal; } else { this.WindowState = FormWindowState.Maximized; } whereever you need it.

  • @pauline60
    @pauline60 Před 3 lety

    Thank you so much! This content is so helpful.

  • @adnangharbi8982
    @adnangharbi8982 Před 2 lety

    thank you

  • @Thepostroun
    @Thepostroun Před 3 lety +1

    thank you so much. great

  • @freemanchaosm2310
    @freemanchaosm2310 Před 4 lety +1

    hi nice video :D
    can you upload this code or programm , i try to copy it but i make error ...

  • @Thepostroun
    @Thepostroun Před 3 lety +2

    can you upload the source code!?

  • @ferrajunianwahidna7922
    @ferrajunianwahidna7922 Před 3 lety +1

    Please put the code on description