Windows Forms
How to save files using SaveFileDialog in C#
3/4/2025 4:06:28 AM 7.95K
To save the contents of a RichTextBox using a SaveFileDialog in C#, you can follow these steps.
Read moreHow to Convert binary to text in C#
3/4/2025 4:04:00 AM 7.95K
Convert binary to text in C# Windows Forms Application by entering binary in TextBox, then pressing the convert button and displaying the result in TextBox control.
Read moreHow to Create a Metro GridView in C#
3/4/2025 3:58:38 AM 27.89K
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 moreHow to Export DataTable to CSV using CsvHelper in C#
3/4/2025 3:47:30 AM 21.86K
Using CsvHelper to export a DataTable to a CSV file in C# is quite straightforward.
Read moreHow to create a Barcode Scanner using Webcam in C#
3/4/2025 3:31:30 AM 19.41K
Creating a barcode scanner using a webcam in a C# Windows Forms application involves several steps, primarily involving the use of a barcode scanning library and accessing the webcam feed.
Read moreHow to use a Webcam in C#
3/4/2025 3:27:37 AM 33.53K
To integrate a webcam into a C# Windows Forms Application using AForge.NET framework, you can follow these steps.
Read moreHow to Update Progress Bar from Async Task in C#
3/4/2025 3:24:43 AM 35.9K
Using IProgress<T> to update a ProgressBar from an asynchronous Task in a C# Windows Forms Application involves a few steps to properly handle the progress reporting and UI updates.
Read moreHow to create multiple line charts in C#
3/4/2025 3:17:50 AM 25.86K
Creating multiple line charts using the Chart control in a C# Windows Forms Application involves a few straightforward steps.
Read moreHow to use Material Design for .Net WinForms in C#
3/4/2025 3:16:16 AM 25.37K
There are several third-party frameworks and libraries that bring Material Design components to Windows Forms.
Read moreHow to Implement Serial Communication in C#
3/4/2025 3:12:49 AM 23.58K
To implement serial communication in C#, you can use the System.IO.Ports.SerialPort class. This class allows you to interact with a serial port (e.g., COM1, COM2) for sending and receiving data.
Read more