Windows Forms

How to Create a Metro TextBox in C#
By Tan Lee Published on Jul 16, 2024 23.49K

To create a Metro TextBox using the Metro Framework (MetroModernUI) in a C# Windows Forms application, follow these steps.

Read more
How to use Aero Wizard in C#
By Tan Lee Published on Mar 18, 2024 11K

The Aero Wizard control in C# Windows Forms applications provides an easy way to create wizard-like interfaces where users can navigate through a series of steps.

Read more
How to Encrypt and Decrypt plain string using ROT13 in C#
By Tan Lee Published on Jun 21, 2024 8.63K

Encrypting and decrypting using ROT13 in C# is straightforward due to its simplicity. ROT13 is a simple substitution cipher that replaces each letter with the letter 13 positions after it in the alphabet.

Read more
How to Encrypt and Decrypt plain string using Triple DES in C#
By Tan Lee Published on Jun 21, 2024 29.6K

Encrypting and decrypting using Triple DES (Data Encryption Standard) in C# involves several steps.

Read more
Webcam Face Detection for .NET using EMGU.CV in C#
By Tan Lee Published on Jun 20, 2024 20.68K

Implementing face detection from a webcam or camera using EMGU.CV in a C# Windows Forms Application involves several steps.

Read more
CRUD Web Service Call Function In C#
By Tan Lee Published on May 30, 2024 9.18K

To call a web service in a C# Windows Forms Application using a WSDL (Web Services Description Language), you can follow these steps.

Read more
How to Insert Update Delete Search Records in C#
By Tan Lee Published on May 30, 2024 14.91K

To perform operations like Insert, Update, Delete, and Search on records displayed in a DataGridView in a C# Windows Forms application, you typically interact with a data source such as a database or a collection of objects.

Read more
Chromium Embedded Framework Browser Tabs Close Button in C#
By Tan Lee Published on May 20, 2024 12.65K

Creating a close button for Chromium Embedded Framework (CEF) browser tabs in a C# Windows Forms application using CefSharp involves a few steps.

Read more
How to Multithreading in C#
By Tan Lee Published on May 14, 2024 10.95K

Creating and starting a thread in a C# Windows Forms Application involves using the Thread class from the System.Threading namespace.

Read more
How to Create a Youtube Search in C#
By Tan Lee Published on May 25, 2024 8.31K

To create a YouTube search functionality in a C# Windows Forms Application using the YouTube Data API, you'll need to perform the following steps.

Read more