Windows Controls
Welcome to Windows Controls section of C# Corner. In this section, you will find various Windows Controls related source code samples, articles, tutorials, and tips.
Articles
  • Mahesh Chand

    Panel In C#

    A Panel Control in Windows Forms is a container for grouping and managing child controls. It simplifies showing and hiding multiple controls by allowing you to manage them as a group. You can creat...
    Mahesh Chand Jul 15, 2010
  • Mahesh Chand

    TextBox In C#

    A TextBox control accepts user input on a Form. In this article, I will discuss how to create a TextBox control in Windows Forms at design-time as well as run-time. After that, I will continue disc...
    Mahesh Chand May 25, 2010
  • Kailash Chandra Behera

    Enable Other Protocols (TCP, PIPE, MSMQ etc.) In IIS

    Learn how to expand Windows IIS beyond HTTP, HTTPS, and FTP to include TCP and PIPE protocols. Follow steps to enable these protocols via Control Panel and IIS settings, enhancing connectivity opti...
  • Pramod Thakur

    Delete Windows.old Folder In Windows

    Deleting the Windows.old folder in Windows is crucial for reclaiming disk space after a system upgrade. This folder contains the previous installation of Windows and can occupy a significant amount...
    Pramod Thakur Jan 05, 2016
  • Suchit Khanna

    Filterable DataGridView using Linq and reflections

    Create a dynamic DataGridView in C# with filter capabilities using Linq and reflection. Manipulate data efficiently, enhance user experience, and utilize object-oriented programming for flexible da...
    Suchit Khanna Jan 17, 2011
  • Mahesh Chand

    FolderBrowserDialog In C#

    FolderBrowserDialog in C# is a convenient tool for enabling users to browse and select folders within a C# application's graphical user interface. It's part of the .NET framework, specifica...
    Mahesh Chand Jun 28, 2010
  • Mahesh Chand

    ProgressBar In C#

    C# ProgressBar control of WinForms allows track and show progress of an operation. The code example in this article demonstrates how to use a Progressbar control to build UI with progress.
    Mahesh Chand Feb 22, 2000
  • Mahesh Chand

    SaveFileDialog In C#

    Windows SaveFileDialog allows users to save a file. C# SaveFileDialog class represents a Save FileDialog control. In this code sample, you will learn how to use a SaveFileDialog in C# and Windows F...
    Mahesh Chand Jul 01, 2010
  • Mahesh Chand

    ListView in C#

    The ListView in C# provides an interface to display a list of items using different views including text, small images, and large images. In this tutorial, we will learn how to work with the Window...
    Mahesh Chand Dec 26, 2010
  • Mahesh Chand

    ComboBox In C#

    C# ComboBox is a combination of a TextBox and a ListBox control. Only one list item is displayed at one time in a ComboBox and other available items are loaded in a drop down list. In this article,...
    Mahesh Chand Aug 09, 2010
  • Mahesh Chand

    BackgroundWorker In C#

    C# BackgroundWorker component executes code in a separate dedicated secondary thread. In this article, I will demonstrate how to use the BackgroundWorker component to execute a time consuming proce...
    Mahesh Chand Aug 20, 2010
  • Mahesh Chand

    OpenFileDialog In C#

    C# OpenFileDialog control is used to browse and select a file on a computer. In this article, you'll learn how to use the OpenFileDialog in C#.
    Mahesh Chand Jun 11, 2010
  • Mahesh Chand

    CheckBox In C#

    In this article, I will discuss how to use a CheckBox control in a Windows Forms using C#.
    Mahesh Chand Jun 03, 2010
  • Mahesh Chand

    C# Message Box

    A C# MessageBox displays a popup message dialog with action buttons. In this article, you'll learn how to implement a Message Box in C# and Windows Forms.
    Mahesh Chand Jul 12, 2010
  • Ryan Alford

    Communicate with Serial Port in C#

    C# SerialPort class allows communication with a serial port in C#. Learn to write data via a serial port and receive data from a device connected to a serial port in C#.
    Ryan Alford Dec 08, 2008
  • Mahesh Chand

    Tutorial: Working with Toolbars in C#

    This tutorial explains you how to add toolbars to a form, load images to the toolbar buttons, and writing event handlers for toolbar buttons.
    Mahesh Chand Jan 30, 2001
  • Mike Gold

    Simple Color Syntax Code Editor for PHP written in C# and .NET: Part I

    The Application is a simple Windows Form program that allows you to open and save the text files edited in the rich edit control, as well as print them out. The program takes advantage of a “syntax...
    Mike Gold Jun 18, 2003
  • C# Curator

    FileSystemWatcher in C#

    In this article, learn how to use the C# FileSystemWatcher class to watch a directory and file changes in the directory using C#.
    C# Curator Dec 14, 2009
  • Rahul Rai

    Save Your Precious Dev Time With Command Aliases In Windows Terminal

    In this article, you will learn how to save your precious dev time with command aliases in a Windows Terminal.
    Rahul Rai Sep 18, 2019
  • Mahesh Chand

    FontDialog In C#

    Learn how to use a C# FontDialog control to select and use a font in a Windows Forms app.
    Mahesh Chand Jun 29, 2010
View More