Windows Forms

How to Record voice in C#
8/16/2024 3:08:02 AM  10.3K

To record audio from a microphone in C# Windows Forms Application, you can use the Win32 API.

Read more
How to Create a Metro ListView in C#
7/30/2024 1:59:01 AM  25.27K

To create a Metro ListView using the Metro Framework in a C# Windows Forms Application, follow these steps.

Read more
How to Print DataGridView with Header and Footer in C#
7/26/2024 1:59:59 AM  7.95K

Printing a DataGridView with header and footer in C# involves several steps, including setting up the printing functionality, handling page breaks, and customizing headers and footers.

Read more
How to Encrypt and Decrypt data using RSA in C#
7/26/2024 1:59:17 AM  19.29K

Encrypting and decrypting strings using the RSA algorithm in a C# Windows Forms Application involves generating RSA key pairs, encrypting the data with the public key, and decrypting it with the private key.

Read more
How to Create a Metro GridView in C#
7/22/2024 2:13:59 AM  26.96K

To use Metro GridView with Metro Framework in a C# Windows Forms application, and then retrieve data from a SQL database using Entity Framework, follow these steps.

Read more
How to Create a Material Design Login Form in C#
7/22/2024 2:13:53 AM  36.67K

Creating a Material Design login form using MaterialSkin for Windows Forms involves several steps to set up the necessary components, styles, and functionality.

Read more
How to Make a Calculator in C#
7/22/2024 2:13:46 AM  23.34K

Creating a simple calculator in a C# Windows Forms Application involves designing a UI with buttons for numbers, operations, and a text box to display input and results.

Read more
How to Use Form Load and Button click Event in C#
7/20/2024 3:23:53 AM  26.7K

In C#, you typically handle events like Form Load and Button Click within a Windows Forms application.

Read more
How to Load multiple User control dynamically in C#
7/20/2024 3:23:45 AM  25.83K

Dynamically loading user controls in a C# Windows Forms Application allows you to create flexible and customizable UIs.

Read more
How to Create a Phone Book in C#
7/20/2024 3:23:38 AM  12.42K

Creating a Phone Book, Telephone Diary application using datatable, dataset, read & write xml file in C# Windows Forms Application.

Read more