Windows Forms

How to use TagListControl in C#
By Tan Lee Published on May 29, 2024 11.95K

To create a tag using FerretLib.WinForms in C# Windows Forms, you can follow these steps.

Read more
How to Drag and Drop text files into a RichTextBox in C#
By Tan Lee Published on Mar 25, 2024 9.69K

In C#, you can easily enable drag-and-drop functionality for a RichTextBox control by handling the appropriate events and setting the AllowDrop property to true.

Read more
How to Drag and Drop controls in C#
By Tan Lee Published on May 19, 2024 7.55K

To enable drag and drop functionality for controls in a C# application using the Control.Draggable library, you need to follow these steps.

Read more
How to Read Excel file in C#
By Tan Lee Published on May 31, 2024 10.36K

Reading an Excel file in a C# Windows Forms Application using Microsoft.Office.Interop.Excel.dll involves a few steps.

Read more
.NET Core Windows Forms Designer
By Tan Lee Published on Jun 21, 2024 12.55K

To enable the designer for Windows Forms Application using .NET Core 3.0 in Visual Studio 2019, you should download and install the Windows Forms .NET Core Designer VSIX package.

Read more
How to Drag and drop image from one PictureBox to another PictureBox in C#
By Tan Lee Published on May 20, 2024 10.83K

To implement drag and drop functionality between two PictureBox controls in a C# Windows Forms Application, you can follow these steps.

Read more
How to Autocomplete RichTextBox in C#
By Tan Lee Published on Jun 03, 2024 9.82K

To implement AutoComplete with a RichTextBox using the Autocomplete Menu library in a C# Windows Forms Application, you can follow these steps.

Read more
How to Convert an image into grayscale in C#
By Tan Lee Published on May 15, 2024 9.43K

You can convert an image to grayscale in a C# Windows Forms Application using the Bitmap class.

Read more
How to List all file names in Zip file in C#
By Tan Lee Published on May 20, 2024 6.24K

Listing all file names in zip file, then display it to the ListBox control in C# Windows Forms Application using System.IO.Packaging

Read more
How to Send text to Notepad in C#
By Tan Lee Published on Jun 01, 2024 9.07K

To pass data to Notepad using a C# Windows Forms Application, you can follow these steps.

Read more