Windows Forms

How to Update Progress Bar from Async Task in C#
By Tan Lee Published on Jun 20, 2024 36.28K

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 Tan Lee Published on Jul 16, 2024 26.07K

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 Tan Lee Published on Jun 17, 2024 25.63K

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 Tan Lee Published on Jun 14, 2024 24.01K

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
How to Create a Login Form with SQL Server in C#
By Tan Lee Published on Jul 16, 2024 13.14K

Creating a login form in a C# Windows Forms Application that interacts with SQL Server using Entity Framework involves several steps.

Read more
How to use Xander UI Framework WinForm App in C#
By Tan Lee Published on May 27, 2024 23.9K

Using Xander UI Framework in a C# Windows Forms Application involves adding the framework's components to your project and utilizing them to enhance the visual appearance and functionality of your forms.

Read more
How to add a Button each row in a DataGridView in C#
By Tan Lee Published on Jul 16, 2024 42.68K

To add a button to each row in a DataGridView in a C# Windows Forms application, you can follow these steps.

Read more
Face Detection for .NET using Emgu CV in C#
By Tan Lee Published on Jun 25, 2024 24.17K

To detect faces using Emgu CV (OpenCV wrapper for C#) in a Windows Forms Application, you can follow these steps.

Read more
How to Upload a file to Web API in C#
By Tan Lee Published on Jul 16, 2024 21.48K

To upload files and submit form data to an ASP.NET Core Web API using RestSharp in a C# Windows Forms application, you can follow these steps.

Read more
How to create Chart/Graph in C#
By Tan Lee Published on Mar 30, 2019 19.16K

Creating charts/graphs like bar, line, and pie charts with data from a SQL Server database using C# typically involves the following steps.

Read more