C# | Create Loading Page with Progressbar and Timer in the Visual Studio

preview_player
Показать описание
#csharp #loading_page #visual_studio #winform #LOADSTAR

_________________________________

Taklif va mulohazalaringizni kommentariyada yozib qoldiring !
___________________________________
Рекомендации по теме
Комментарии
Автор

I have to say almost all of videos in the Youtube to demo the progress bar are useless. Using timer for what? To display a timer progress? How to detect a loading progress or a running progress and display it in progress bar. None of them addressed it.

wangzhk
Автор

{
if (progressBar1.Value < 100)
{
progressBar1.Value += 1;
label1.Text = progressBar1.Value.ToString() + "%";
}

else
{
timer1.Stop();

MessageBox.Show("Pronto");

miguelmk
Автор

I am not able to click on the timer. Please help me. Can we connect with you through WhatsApp?

Triple