C# Animating Text | Timer

preview_player
Показать описание
Hi!
Today we will make a simple text animation.

Details
- IDE: Visual Studio 2019
- Project: Windows Form App (.NET Framework)
- Framework: .NET Framework 4.7.2

You can grab the project files on this video by using this link:

Have fun.. :D

---------------------------------------------------------------------------------------------
Timestamps:
---------------------------------------------------------------------------------------------
0:00​ - Demo & intro
0:12 - Creating the project file
1:20 - Setting up the form
3:55 - Change form border to rounded corner
7:55 - Animating the label
10:45 - Some more coding

#CodeFlow #CSharp #CsharpDevelopment #CSharpDev #CodeIsFun #CSharpUI
Рекомендации по теме
Комментарии
Автор

Alternatively you can use this guys. Dont need to this codes


private async void print()
{

string text = label1.Text;
label1.Text = "";

while (true)
{

foreach (char item in text)
{
label1.Text += item;
await Task.Delay(100);
}

if (label1.Text == text)
break;

}


}

itsarsh
Автор

Just subscribed! Loved everything, background music, the calm and the speed of the tutorial, just perfect!!!

applepie
Автор

Do more videos!! Much video you will post, more you will grow!

applepie
Автор

+1 sub also if you can do an tutorial on rainbow borders would be awesome

arvid