Windows Forms

How to save files using SaveFileDialog in C#
By FoxLearn Published on Jul 12, 2017  7.97K

To save the contents of a RichTextBox using a SaveFileDialog in C#, you can follow these steps.

Read more
How to Convert binary to text in C#
By FoxLearn Published on May 17, 2024  7.97K

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 more
How to Create a Metro GridView in C#
By FoxLearn Published on Jul 16, 2024  27.92K

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 Export DataTable to CSV using CsvHelper in C#
By FoxLearn Published on Jul 16, 2024  21.91K

Using CsvHelper to export a DataTable to a CSV file in C# is quite straightforward.

Read more
How to create a Barcode Scanner using Webcam in C#
By FoxLearn Published on Jul 05, 2024  19.44K

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 more
How to use a Webcam in C#
By FoxLearn Published on Jun 12, 2024  33.6K

To integrate a webcam into a C# Windows Forms Application using AForge.NET framework, you can follow these steps.

Read more
How to Update Progress Bar from Async Task in C#
By FoxLearn Published on Jun 20, 2024  35.97K

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 more
How to create multiple line charts in C#
By FoxLearn Published on Jul 16, 2024  25.92K

Creating multiple line charts using the Chart control in a C# Windows Forms Application involves a few straightforward steps.

Read more
How to use Material Design for .Net WinForms in C#
By FoxLearn Published on Jun 17, 2024  25.42K

There are several third-party frameworks and libraries that bring Material Design components to Windows Forms.

Read more
How to Implement Serial Communication in C#
By FoxLearn Published on Jun 14, 2024  23.66K

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