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

preview_player
Показать описание
How to Make a modern splash screen with custom progress bar in visual studio winform, c# tutorials, .Net tutorials.

Don't Forget to Like, Comment, Share and Subscribe to My Channel For More Videos.

For Promotional or Business Purpose:

Get Awesome Projects & Source Codes:

Also like my Facebook Page For More Videos and Learning Content:

Checkout playlist of C# Winform Tutorials.

C++ Programming Language Course For Beginners

Checkout playlist of JavaScript Tutorials

Checkout playlist of Web Designing Tutorials

Checkout playlist of CSS Animation Tutorials.

Checkout playlist of Flutter UI Design Tutorials.

Checkout playlist of Game Animation Tutorials

How to create notepad in c# winform.

How to create text to speech and speech to text application in c#.
Рекомендации по теме
Комментарии
Автор

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

DJoneone
Автор

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.
Автор

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

Tarucz
Автор

Nice design and easy to understand 😅😅😅

NarendraKanzariya-dj
Автор

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. :/

nebben
Автор

How can we use it process bar acctually? If our main form takes too time to load and if we want to use splash screen to make user see when the main form being loaded.

nnnscorpionnn
Автор

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

hiddenhidden
Автор

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

DiyintheGhetto
Автор

Hello!
It is work same on visual basic ? Please

andreadann
Автор

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

ryze
Автор

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

envyyscar
Автор

are you sure you're using progressbar control?

abdullohsj
Автор

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?

Omer-xmdq
Автор

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!

spoiled-pizza
Автор

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

bozidargluvic
Автор

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?

DJoneone
Автор

This works but its way too fast even after changing the interval to 50000

cuetard
Автор

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?

markosabados
Автор

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

kavishanethmini
Автор

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




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

najafit