System.Windows.Forms.Control Class

Defines the base class for controls, which are components with visual representation.

See Also: Control Members

Syntax

[System.ComponentModel.ToolboxItemFilter("System.Windows.Forms")]
[System.ComponentModel.Design.Serialization.DesignerSerializer("System.Windows.Forms.Design.ControlCodeDomSerializer, System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.ComponentModel.Design.Serialization.CodeDomSerializer, System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
[System.ComponentModel.DefaultEvent("Click")]
[System.ComponentModel.DefaultProperty("Text")]
[System.ComponentModel.Designer("System.Windows.Forms.Design.ControlDesigner, System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.ComponentModel.Design.IDesigner")]
[System.Runtime.InteropServices.ClassInterface(System.Runtime.InteropServices.ClassInterfaceType.AutoDispatch)]
[System.Runtime.InteropServices.ComVisible(true)]
public class Control : System.ComponentModel.Component, System.ComponentModel.ISynchronizeInvoke, IBindableComponent, IBounds, IDropTarget, IWin32Window

Remarks

To create your own control class, inherit from the System.Windows.Forms.UserControl, System.Windows.Forms.Control classes, or from the other Windows Forms provided controls. For more information about authoring custom controls, see Developing Custom Windows Forms Controls with the .NET Framework.

The System.Windows.Forms.Control class implements very basic functionality required by classes that display information to the user. It handles user input through the keyboard and pointing devices. It handles message routing and security. It defines the bounds of a control (its position and size), although it does not implement painting. It provides a window handle (hWnd).

Windows Forms controls use ambient properties so child controls can appear like their surrounding environment. An ambient property is a control property that, if not set, is retrieved from the parent control. If the control does not have a Control.Parent, and the property is not set, the control attempts to determine the value of the ambient property through the Control.Site property. If the control is not sited, if the site does not support ambient properties, or if the property is not set on the System.Windows.Forms.AmbientProperties, the control uses its own default values. Typically, an ambient property represents a characteristic of a control, such as Control.BackColor, that is communicated to a child control. For example, a System.Windows.Forms.Button will have the same Control.BackColor as its parent System.Windows.Forms.Form by default. Ambient properties provided by the System.Windows.Forms.Control class include: Control.Cursor, Control.Font, Control.BackColor, Control.ForeColor, and Control.RightToLeft.

Note:

To make your Windows Forms application support Windows XP visual styles, be sure to set the System.Windows.Forms.FlatStyle property to System and include a manifest with your executable. A manifest is an XML file that is included either as a resource within your application executable or as a separate file that resides in the same directory as the executable file. For an example of a manifest, see the Example section of the System.Windows.Forms.FlatStyle enumeration. For more information about using the visual styles available in Windows XP, see "Using Windows XP Visual Styles" in the MSDN library at http://msdn.microsoft.com/library.

Windows Forms has accessibility support built in, and provides information about your application that enables it to work with accessibility client applications such as screen enlarger and reviewer utilities, voice input utilities, on-screen keyboards, alternative input devices, and keyboard enhancement utilities. Sometimes you will want to provide additional information to accessibility client applications. There are two ways of providing this additional information. You can set the Control.AccessibleName, Control.AccessibleDescription, Control.AccessibleDefaultActionDescription, and Control.AccessibleRole property values, which will be reported to accessibility client applications. This method is typically used to provide limited accessibility information for existing controls. Alternatively, you can write your own class deriving from the System.Windows.Forms.AccessibleObject or System.Windows.Forms.Control.ControlAccessibleObject classes, providing as much accessibility information as needed.

Note:

To maintain better performance, do not set the size of a control in its constructor. The preferred method is to override the Control.DefaultSize property.

Note:

Do not add data bindings for a System.Windows.Forms.Control in its constructor. Doing so will cause errors in code generation and can cause unwanted behavior.

The majority of the controls in the System.Windows.Forms namespace use the underlying Windows common control as a base to build on. For more information about the Windows common controls, see the "General Control Reference" topic in the MSDN library at http://msdn.microsoft.com/library.

To identify Windows Forms controls from a separate process, use a standard SendMessage call to pass the WM_GETCONTROLNAME message. WM_GETCONTROLNAME is independent of the language and Windows hierarchy. For more information, see the "Recommended Solution for Windows Forms" topic in the "Automating Windows Forms" section of the MSDN library at tp://msdn.microsoft.com/library.

Use the Control.InvokeRequired property to synchronize access to the control from multiple threads. For more information about multithreaded Windows Forms controls, see How to: Make Thread-Safe Calls to Windows Forms Controls

Requirements

Namespace: System.Windows.Forms
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
Assembly Versions: 1.0.5000.0, 2.0.0.0