Windows forms controls download

Controls to Use on Windows Forms

The following is an alphabetic list of controls and components that can be used on Windows Forms. In addition to the Windows Forms controls covered in this section, you can add ActiveX and custom controls to Windows Forms. If you do not find the control you need listed here, you can also create your own. For details, see Developing Windows Forms Controls at Design Time. For more information about choosing the control you need, see Windows Forms Controls by Function.

Visual Basic controls are based on classes provided by the .NET Framework.

In This Section

Windows Forms Controls by Function
Lists and describes Windows Forms controls based on the .NET Framework.

Controls with Built-In Owner-Drawing Support
Describes how to alter aspects of a control’s appearance that are not available through properties.

BackgroundWorker Component
Enables a form or control to run an operation asynchronously.

BindingNavigator Control
Provides the navigation and manipulation user interface (UI) for controls that are bound to data.

BindingSource Component
Encapsulates a data source for binding to controls.

Button Control
Presents a standard button that the user can click to perform actions.

CheckBox Control
Indicates whether a condition is on or off.

CheckedListBox Control
Displays a list of items with a check box next to each item.

ColorDialog Component
Allows the user to select a color from a palette in a pre-configured dialog box and to add custom colors to that palette.

ComboBox Control
Displays data in a drop-down combo box.

ContextMenu Component
Provides users with an easily accessible menu of frequently used commands that are associated with the selected object. Although ContextMenuStrip replaces and adds functionality to the ContextMenu control of previous versions, ContextMenu is retained for both backward compatibility and future use if so desired.

ContextMenuStrip Control
Represents a shortcut menu. Although ContextMenuStrip replaces and adds functionality to the ContextMenu control of previous versions, ContextMenu is retained for both backward compatibility and future use if so desired.

DataGrid Control
Displays tabular data from a dataset and allows for updates to the data source.

DataGridView Control
Provides a flexible, extensible system for displaying and editing tabular data.

DateTimePicker Control
Allows the user to select a single item from a list of dates or times.

Dialog-Box Controls and Components
Describes a set of controls that allow users to perform standard interactions with the application or system.

DomainUpDown Control
Displays text strings that a user can browse through and select from.

ErrorProvider Component
Displays error information to the user in a non-intrusive way.

FileDialog Class Provides base-class functionality for file dialog boxes.

FlowLayoutPanel Control
Represents a panel that dynamically lays out its contents horizontally or vertically.

FolderBrowserDialog Component
Displays an interface with which users can browse and select a directory or create a new one.

Читайте также:  Отключено устройство windows audio

FontDialog Component
Exposes the fonts that are currently installed on the system.

GroupBox Control
Provides an identifiable grouping for other controls.

HelpProvider Component
Associates an HTML Help file with a Windows-based application.

HScrollBar and VScrollBar Controls
Provide navigation through a list of items or a large amount of information by scrolling either horizontally or vertically within an application or control.

ImageList Component
Displays images on other controls.

Label Control
Displays text that cannot be edited by the user.

LinkLabel Control
Allows you to add Web-style links to Windows Forms applications.

ListBox Control
Allows the user to select one or more items from a predefined list.

ListView Control
Displays a list of items with icons, in the manner of Windows Explorer.

MainMenu Component
Displays a menu at run time. Although MenuStrip replaces and adds functionality to the MainMenu control of previous versions, MainMenu is retained for both backward compatibility and future use if you choose.

MaskedTextBox Control
Constrains the format of user input in a form.

MenuStrip Control
Provides a menu system for a form. Although MenuStrip replaces and adds functionality to the MainMenu control of previous versions, MainMenu is retained for both backward compatibility and future use if you choose.

MonthCalendar Control
Presents an intuitive graphical interface for users to view and set date information.

NotifyIcon Component
Displays icons for processes that run in the background and would not otherwise have user interfaces.

NumericUpDown Control
Displays numerals that a user can browse through and select from.

OpenFileDialog Component
Allows users to open files by using a pre-configured dialog box.

PageSetupDialog Component
Sets page details for printing through a pre-configured dialog box.

Panel Control
Provide an identifiable grouping for other controls, and allows for scrolling.

PictureBox Control
Displays graphics in bitmap, GIF, JPEG, metafile, or icon format.

PrintDialog Component
Selects a printer, chooses the pages to print, and determines other print-related settings.

PrintDocument Component
Sets the properties that describe what to print, and prints the document in Windows-based applications.

PrintPreviewControl Control
Allows you to create your own PrintPreview component or dialog box instead of using the pre-configured version.

PrintPreviewDialog Control
Displays a document as it will appear when it is printed.

ProgressBar Control
Graphically indicates the progress of an action towards completion.

RadioButton Control
Presents a set of two or more mutually exclusive options to the user.

RichTextBox Control
Allows users to enter, display, and manipulate text with formatting.

SaveFileDialog Component
Selects files to save and where to save them.

SoundPlayer Class Enables you to easily include sounds in your applications.

SplitContainer Control
Allows the user to resize a docked control.

Splitter Control
Allows the user to resize a docked control (.NET Framework version 1.x).

StatusBar Control
Displays status information related to the control that has focus. Although StatusStrip replaces and extends the StatusBar control of previous versions, StatusBar is retained for both backward compatibility and future use if you choose.

StatusStrip Control
Represents a Windows status bar control. Although StatusStrip replaces and extends the StatusBar control of previous versions, StatusBar is retained for both backward compatibility and future use if you choose.

TabControl Control
Displays multiple tabs that can contain pictures or other controls.

Читайте также:  Для чего нужен пуск windows

TableLayoutPanel Control
Represents a panel that dynamically lays out its contents in a grid composed of rows and columns.

TextBox Control
Allows editable, multiline input from the user.

Timer Component
Raises an event at regular intervals.

ToolBar Control
Displays menus and bitmapped buttons that activate commands. You can extend the functionality of the control and modify its appearance and behavior. Although ToolStrip replaces and adds functionality to the ToolBar control of previous versions, ToolBar is retained for both backward compatibility and future use if you choose.

ToolStrip Control
Creates custom toolbars and menus in your Windows Forms applications. Although ToolStrip replaces and adds functionality to the ToolBar control of previous versions, ToolBar is retained for both backward compatibility and future use if you choose.

ToolStripContainer Control
Provides panels on each side of a form for docking, rafting, and arranging ToolStrip controls, and a central ToolStripContentPanel for traditional controls.

ToolStripPanel Control
Provides one panel for docking, rafting and arranging ToolStrip controls.

ToolStripProgressBar Control Overview
Graphically indicates the progress of an action towards completion. The ToolStripProgressBar is typically contained in a StatusStrip.

ToolTip Component
Displays text when the user points at other controls.

TrackBar Control
Allows navigation through a large amount of information or visually adjusting a numeric setting.

TreeView Control
Displays a hierarchy of nodes that can be expanded or collapsed.

WebBrowser Control
Hosts Web pages and provides Internet Web browsing capabilities to your application.

Windows Forms Controls Used to List Options
Describes a set of controls used to provide users with a list of options to choose from.

Windows Forms Controls
Explains the use of Windows Forms controls, and describes important concepts for working with them.

Developing Windows Forms Controls at Design Time
Provides links to step-by-step topics, recommendations for which kind of control to create, and other information about creating your own control.

Controls and Programmable Objects Compared in Various Languages and Libraries
Provides a table that maps controls in Visual Basic 6.0 to the corresponding control in Visual Basic .NET. Note that controls are now classes in the .NET Framework.

How to: Add ActiveX Controls to Windows Forms
Describes how to use ActiveX controls on Windows Forms.

Over 120 Advanced WinForms UI Controls & Components

Deliver intuitive, modern Windows Forms applications in less time.

  • Lightning-fast grids, charts, and reports
  • Extensive API and deep built-in
    customization options
  • 15 WinForms input controls for
    any data entry scenario
  • Support for .NET Framework and .NET 5

.NET 5 WinForms Controls

.NET 5 introduces performance enhancements and unifies the .NET SDK across desktop, web, and mobile. ComponentOne WinForms Edition now includes a .NET 5 version in addition to .NET 4.5.2. Our products fully support .NET 5 and will continue to keep them compatible with the latest framework updates.

Industry’s Fastest .NET Datagrid

FlexGrid continues to be the industry’s fastest data grid, loading large data sets up to 10x faster than the competition

Flexible UI Controls for Complete WinForms Applications

Reduce developer overhead with extensive built-in feature sets, including flexible data binding.

Easy-To-Use, Extensive API

Extend your desktop controls and reduce your learning curve with our deep, easy-to-read API.

Touch Support for WinForms Applications

Use the TouchToolkit to broaden the reach of your WinForms apps.

Читайте также:  Где находится файл заставки windows
Modern Microsoft Office 2016 Themes

40+ built-in Microsoft and Office themes allow you to create beautiful, modern WinForms apps in less time.

Full Visual Studio and Windows 10 Support

Seamless Visual Studio 2019 integration, and designed for the VS ecosystem. Also supports Windows 10.

Fluent Ribbon

  • Based off UI concepts from Microsoft Office 365
  • Vector icons
  • Backstage Component
  • Simplified View
  • Updated Galleries

Build BI Dashboards

Build business intelligence dashboards with the dashboard layout control

  • Built-in layouts
  • Users can resize and move controls
  • Embed C1 controls like FlexGrid and FlexChart

Lightning-Fast WinForms Datagrids

FlexGrid maximizes customization for bound and unbound WinForms grids.

  • Flexible data binding
  • Sorting, grouping, and filtering
  • Cell selection and editing

80+ WinForms Chart Types

FlexChart includes chart types from line to sunburst and a universal, easy-to-use API.

  • Flexible data binding
  • Series selection and labels
  • Multiple axes and plot areas
  • Image export

Migrate from Crystal Reports

Migrate from Crystal Reports with FlexReport’s lightning-fast solution, which includes a code-free report designer.

  • One-click migration
  • Multiple data sources for a single report

Flexible, Modern WinForms Calendars and Schedulers

The feature-rich calendar control allows you to select date ranges, and the scheduler provides an Outlook-like calendar experience, complete with full-featured appointment editing

Explore All the WinForms Controls

  • Top Controls
  • FlexGrid 5
  • FlexChart 5
  • FlexReport 5
  • InputPanel 5
  • * Available only in ComponentOne Studio Enterprise
  • DataConnectors
  • DataEngine
  • FinancialChart
  • FlexPivot/OLAP
  • IntelliSpell
  • TextParser
  • 5 .NET 5 Version Available
  • Data Management
  • DataCollection
  • DataSource
  • DataFilter
  • FlexGrid 5
  • FlexPivot*
  • Listbox
  • RulesManager
  • Tree Grid
  • True DBGrid
  • Data Visualization
  • FinancialChart*
  • FlexChart 5
  • GanttView
  • Gauges
  • Maps 5
  • Sparkline 5
  • Editors
  • Expression Editor 5
  • DateEditor
  • Rich Text Editor
  • Input Controls
  • InputPanel 5
  • Button, Modal Button, SplitButton 5
  • CheckBox 5
  • Database Navigator
  • DropDowns & ComboBoxes 5
  • MultiSelect 5
  • Label and PictureBox 5
  • RangeSlider 5
  • TextBox & Masked Input 5
  • Scheduling
  • CalendarView
  • Scheduler
  • Utilities
  • BarCode 5
  • Bitmap 5
  • CalcEngine
  • DynamicHelp
  • IntelliSpell*
  • Project Templates
  • SpellChecker
  • Themes 5
  • Material Theme Designer
  • TouchToolkit
  • Zip
  • Reporting & Documents
  • C1Word Library
  • Excel
  • FlexReport 5
  • FlexViewer 5
  • FlexReport Designer**
  • PDF DocumentSource
  • PDF
  • ** Source code available only in ComponentOne Studio Enterprise
  • Navigation & Layout
  • Dashboard Layout
  • DockingTab 5
  • Menus and Toolbars 5
  • NavBar
  • OutBar
  • RadialMenu
  • Ribbon 5
  • Sizer
  • SplitContainer
  • SuperTooltip 5
  • TileControl
  • TopicBar
  • TreeView 5
  • WinPack

Get the WinForms Demo Explorer

FlexChart Explorer includes hundreds of WinForms charts and interactions

All of our WinForms demos are included in a single downloadable desktop explorer. Demos include:

  • WinForms UI Control Explorer
  • WinForms Charts, Reports, and Financial Chart Explorers
  • TouchToolkit
  • Sales Dashboard App
  • Weather Chart
  • Currency Comparison
  • Stock Chart
  • Software Development Plan
  • Maps
  • Rich Text Editor

Project Templates

Get started quickly with ComponentOne project templates

Templates

Docking App Template

Ribbon and Grid App Template

WinForms Themed App Template

Project Templates — Docking App Template

Docking App Template

Project Templates — Ribbon and Grid App Template

Ribbon and Grid App Template

Project Templates — WinForms Themed App Template

WinForms Themed App Template

What’s New

New Controls for .NET 5 — The following controls are now available for .NET 5 apps: C1FlexPivot, C1Maps, C1TreeView, C1FlexReport, C1FlexViewer, C1Document, C1Input, C1Command and several themes including Expression Dark, Expression Light, Mac Blue, Mac Silver and High Contrast.

FlexGrid Enhancements:

  • Multi-Column Sorting — With the keyboard and mouse users may perform sorting on multiple columns at one time.
  • Grouping by Context Menu — Right-click a column header and perform grouping or ungrouping.
Оцените статью