How to Create Modern Splash Screen with Progress Bar using C# | Visual Studio Tutorials

How to Create Modern Splash Screen with Progress Bar using C# | Visual Studio Tutorials

Dear Programmer

4 года назад

99,977 Просмотров

Ссылки и html тэги не поддерживаются


Комментарии:

DIY IN THE GHETTO
DIY IN THE GHETTO - 16.10.2023 07:23

Is there a way to do the same thing but with a loading text with the progress?

Ответить
TipsJazzInferno
TipsJazzInferno - 22.08.2023 09:37

Simple Code : private void timer1_Tick(object sender, EventArgs e)
{
metroProgressBar1.Value += 3;
if (metroProgressBar1.Value >= 99)
{
metroProgressBar1.Value = 100;
}
}

Ответить
Monder Murshed
Monder Murshed - 23.07.2023 20:34

Really useful! thank u.

Ответить
Andrea Dann
Andrea Dann - 19.07.2023 17:36

Hello!
It is work same on visual basic ? Please

Ответить
ishan madushanka
ishan madushanka - 15.02.2023 13:14

thank you bro

Ответить
odioifroci 222
odioifroci 222 - 21.11.2022 00:27

more streched video pls?🤑🤑

Ответить
Darlin Manuel Casado Perez
Darlin Manuel Casado Perez - 31.07.2022 03:38

Very straight foward video!

Ответить
diler kurd
diler kurd - 22.04.2022 10:29

Thank You Dear Programmer!

Ответить
Wan-Destroyer
Wan-Destroyer - 04.04.2022 17:13

Thank you sooo much

Ответить
Božidar Gluvić
Božidar Gluvić - 17.03.2022 23:08

hello, how could the transition be made slower when a new form opens up ??

Ответить
Marko Sabados
Marko Sabados - 27.02.2022 00:30

Hi i have a problem when i type numbers for my backcolor i hae an error: Property alue is not valid, 48,56, 79 is not valid value for int32. How can i fix this?

Ответить
Fovero MW
Fovero MW - 12.02.2022 14:35

it is not working. i do not know why

Ответить
Charles
Charles - 21.01.2022 05:20

Best method : Use a progress bar (real one in the toolkit) + timer and progressbar1.Value++; on timer1_tick event then if (progressbar1.Value == 100) ... do whatever you want when the loading is done. (make sure to timer1.Enable = false; to turn off the timer at the beginning of your if !)

Ответить
Charles
Charles - 21.01.2022 05:04

Guys dont use this tutorial it is total shit ... dude making a progress bar with panels is so dumb when you have actual progressbars ...... and he making fake "close,maximize,minimize" buttons .. wow big scam loading form LMAO

Ответить
mohamed ARSHO
mohamed ARSHO - 26.11.2021 00:11

Thnkz 🙏 100% taacher

Ответить
William Dexter
William Dexter - 14.09.2021 15:40

but i have a little proble now. i want that the panel run, if i click on the button login. can you show me where i should can put in it?

Ответить
William Dexter
William Dexter - 11.09.2021 13:46

you can use the panel1.width for the maximum value in the if statement

Ответить
EnvyyScar
EnvyyScar - 16.07.2021 00:25

I already had an existing form, but now i want to add the loading thing/splash screen. This doesn't seem to work

Ответить
Najaf IT
Najaf IT - 09.05.2021 12:22

panel2.Width += 3;
if (panel2.Width >= 1060)
{
timer1.Enabled = false;
timer1.Stop();




FRM_LOGIN frm = new FRM_LOGIN();
this.Hide();
frm.ShowDialog();
this.Close();
}

Ответить
kavisha nethmini
kavisha nethmini - 05.05.2021 23:22

I have a problem in +- 3 .it got error

Ответить
Lex Hacker GT
Lex Hacker GT - 06.04.2021 23:47

48;56;79

Ответить
Nicolas Ortiz
Nicolas Ortiz - 26.03.2021 19:49

This video is too underrated

Ответить
Hasan Ergen
Hasan Ergen - 18.03.2021 14:43

i know how to do this but can you please learn to spell





also it feels like he recorded this on hypercam 2

Ответить
Ayad Ali-Alsalman
Ayad Ali-Alsalman - 13.02.2021 10:00

Up

Ответить
neB Ben
neB Ben - 28.12.2020 18:17

This is not a progress bar, this is just a fancy animation that will delay 5 seconds to the user as the implementation shown in the video does not denote any "real progress" or load on the application. :/

Ответить
Ömer
Ömer - 23.12.2020 13:33

panel2.Width += 3;
if (panel2.Width >= 712)
{
timer1.Stop();
Ana_Menü ana_Menü = new Ana_Menü();
ana_Menü.Show();
this.Hide();
}


Can you help me?

Ответить
Harvey
Harvey - 10.12.2020 01:38

hello how could i make it that the progress bar moves when a button is clicked ?
good video by the way :)

Ответить
Jumanazar Said
Jumanazar Said - 01.12.2020 10:12

are you sure you're using progressbar control?

Ответить
Young Mikoczan
Young Mikoczan - 29.11.2020 17:08

Great! Thansk!

Ответить
Zypper Zpr
Zypper Zpr - 06.10.2020 05:43

thanks

Ответить
spoiledpizza
spoiledpizza - 08.07.2020 07:14

panel2.Width += 3;
if (panel2.Width >= 599)
{ }
timer1.Stop();
Form1 fm2 = new Form1();
_ = Show();
this = Hide();
}
}
}

What if you already had your app and you need to put a splash screen? for me it does not show. Just the actual app, not the splash screen. Help!

Ответить
Hidden Hidden
Hidden Hidden - 30.05.2020 12:35

//You should use this
if (panel2.width >= panel1.width ){}
.
//And also this
Form2 frm2 = new Form2();
this.hide;
frm2.showdialog();
this.close;

Ответить
Hidden Hidden
Hidden Hidden - 30.05.2020 12:32

Thanks

Ответить
Tarucz
Tarucz - 25.05.2020 01:16

Ah someone who actually shows how to do it in 2020. Liked

Ответить