Tag - C# Windows Form Examples

C# Windows Form

How to Reverse a String in C#

In this example,i’ll show you How to reverse a string in C# Form Application. C# Code: C# private void button1_Click(object sender, EventArgs e) { //this section create a string variable. string characters = textBox1.Text;...

Windows Form

C# Create Countdown with Timer

I’ll show you how to make a countdown with C# and using the timer control. To do this, we create a new Windows Forms project and switch to the code view of the form. For this example, we need some global variables. You...