﻿<?xml version="1.0" encoding="utf-8"?><Type Name="Control" FullName="System.Windows.Forms.Control"><TypeSignature Language="C#" Value="public class Control : System.ComponentModel.Component, System.ComponentModel.ISynchronizeInvoke, System.Windows.Forms.IBindableComponent, System.Windows.Forms.IBounds, System.Windows.Forms.IDropTarget, System.Windows.Forms.IWin32Window" /><AssemblyInfo><AssemblyName>System.Windows.Forms</AssemblyName><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Base><BaseTypeName>System.ComponentModel.Component</BaseTypeName></Base><Interfaces><Interface><InterfaceName>System.ComponentModel.ISynchronizeInvoke</InterfaceName></Interface><Interface><InterfaceName>System.Windows.Forms.IBindableComponent</InterfaceName></Interface><Interface><InterfaceName>System.Windows.Forms.IBounds</InterfaceName></Interface><Interface><InterfaceName>System.Windows.Forms.IDropTarget</InterfaceName></Interface><Interface><InterfaceName>System.Windows.Forms.IWin32Window</InterfaceName></Interface></Interfaces><Attributes><Attribute><AttributeName>System.ComponentModel.ToolboxItemFilter("System.Windows.Forms")</AttributeName></Attribute><Attribute><AttributeName>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")</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.DefaultEvent("Click")</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.DefaultProperty("Text")</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.Designer("System.Windows.Forms.Design.ControlDesigner, System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.ComponentModel.Design.IDesigner")</AttributeName></Attribute><Attribute><AttributeName>System.Runtime.InteropServices.ClassInterface(System.Runtime.InteropServices.ClassInterfaceType.AutoDispatch)</AttributeName></Attribute><Attribute><AttributeName>System.Runtime.InteropServices.ComVisible(true)</AttributeName></Attribute></Attributes><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>To create your own control class, inherit from the <see cref="T:System.Windows.Forms.UserControl" />, <see cref="T:System.Windows.Forms.Control" /> classes, or from the other Windows Forms provided controls. For more information about authoring custom controls, see <format type="text/html"><a href="236cebc0-bd71-4f18-9fd6-5d0e592375df">Developing Custom Windows Forms Controls with the .NET Framework</a></format>.</para><para>The <see cref="T: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 (<paramref name="hWnd" />).</para><para>Windows Forms controls use ambient properties so child controls can appear like their surrounding environment. An <newTerm>ambient property</newTerm> is a control property that, if not set, is retrieved from the parent control. If the control does not have a <see cref="P:System.Windows.Forms.Control.Parent" />, and the property is not set, the control attempts to determine the value of the ambient property through the <see cref="P:System.Windows.Forms.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 <see cref="T:System.Windows.Forms.AmbientProperties" />, the control uses its own default values. Typically, an ambient property represents a characteristic of a control, such as <see cref="P:System.Windows.Forms.Control.BackColor" />, that is communicated to a child control. For example, a <see cref="T:System.Windows.Forms.Button" /> will have the same <see cref="P:System.Windows.Forms.Control.BackColor" /> as its parent <see cref="T:System.Windows.Forms.Form" /> by default. Ambient properties provided by the <see cref="T:System.Windows.Forms.Control" /> class include: <see cref="P:System.Windows.Forms.Control.Cursor" />, <see cref="P:System.Windows.Forms.Control.Font" />, <see cref="P:System.Windows.Forms.Control.BackColor" />, <see cref="P:System.Windows.Forms.Control.ForeColor" />, and <see cref="P:System.Windows.Forms.Control.RightToLeft" />.</para><block subset="none" type="note"><para>To make your Windows Forms application support Windows XP visual styles, be sure to set the <see cref="T: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 <see cref="T: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.</para></block><para>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 <see cref="P:System.Windows.Forms.Control.AccessibleName" />, <see cref="P:System.Windows.Forms.Control.AccessibleDescription" />, <see cref="P:System.Windows.Forms.Control.AccessibleDefaultActionDescription" />, and <see cref="P:System.Windows.Forms.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 <see cref="T:System.Windows.Forms.AccessibleObject" /> or <see cref="T:System.Windows.Forms.Control.ControlAccessibleObject" /> classes, providing as much accessibility information as needed.</para><block subset="none" type="note"><para>To maintain better performance, do not set the size of a control in its constructor. The preferred method is to override the <see cref="P:System.Windows.Forms.Control.DefaultSize" /> property.</para></block><block subset="none" type="note"><para>Do not add data bindings for a <see cref="T:System.Windows.Forms.Control" /> in its constructor. Doing so will cause errors in code generation and can cause unwanted behavior.</para></block><para>The majority of the controls in the <see cref="N: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.</para><para>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 <see cref="http://msdn.microsoft.com/library">http://msdn.microsoft.com/library</see>.</para><para>Use the <see cref="P:System.Windows.Forms.Control.InvokeRequired" /> property to synchronize access to the control from multiple threads. For more information about multithreaded Windows Forms controls, see <format type="text/html"><a href="138f38b6-1099-4fd5-910c-390b41cbad35">How to: Make Thread-Safe Calls to Windows Forms Controls</a></format></para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Defines the base class for controls, which are components with visual representation.</para></summary></Docs><Members><Member MemberName=".ctor"><MemberSignature Language="C#" Value="public Control ();" /><MemberType>Constructor</MemberType><Parameters /><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The <see cref="T:System.Windows.Forms.Control" /> class is the base class for all controls used in a Windows Forms application. Because this class is not typically used to create an instance of the class, this constructor is typically not called directly but is instead called by a derived class.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Initializes a new instance of the <see cref="T:System.Windows.Forms.Control" /> class with default settings.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName=".ctor"><MemberSignature Language="C#" Value="public Control (string text);" /><MemberType>Constructor</MemberType><Parameters><Parameter Name="text" Type="System.String" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The <see cref="T:System.Windows.Forms.Control" /> class is the base class for all controls used in a Windows Forms application. Because this class is not typically used to create an instance of the class, this constructor is typically not called directly but is instead called by a derived class.</para><para>This version of the <see cref="M:System.Windows.Forms.Control.#ctor" /> constructor sets the initial <see cref="P:System.Windows.Forms.Control.Text" /> property value to the <paramref name="text" /> parameter value.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Initializes a new instance of the <see cref="T:System.Windows.Forms.Control" /> class with specific text.</para></summary><param name="text"><attribution license="cc4" from="Microsoft" modified="false" />The text displayed by the control. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName=".ctor"><MemberSignature Language="C#" Value="public Control (System.Windows.Forms.Control parent, string text);" /><MemberType>Constructor</MemberType><Parameters><Parameter Name="parent" Type="System.Windows.Forms.Control" /><Parameter Name="text" Type="System.String" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The <see cref="T:System.Windows.Forms.Control" /> class is the base class for all controls used in a Windows Forms application. Because this class is not typically used to create an instance of the class, this constructor is typically not called directly but is instead called by a derived class.</para><para>This version of the <see cref="M:System.Windows.Forms.Control.#ctor" /> constructor sets the initial <see cref="P:System.Windows.Forms.Control.Text" /> property value to the <paramref name="text" /> parameter value. The constructor also adds the control to the parent control's <see cref="T:System.Windows.Forms.Control.ControlCollection" />.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Initializes a new instance of the <see cref="T:System.Windows.Forms.Control" /> class as a child control, with specific text.</para></summary><param name="parent"><attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Windows.Forms.Control" /> to be the parent of the control. </param><param name="text"><attribution license="cc4" from="Microsoft" modified="false" />The text displayed by the control. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName=".ctor"><MemberSignature Language="C#" Value="public Control (string text, int left, int top, int width, int height);" /><MemberType>Constructor</MemberType><Parameters><Parameter Name="text" Type="System.String" /><Parameter Name="left" Type="System.Int32" /><Parameter Name="top" Type="System.Int32" /><Parameter Name="width" Type="System.Int32" /><Parameter Name="height" Type="System.Int32" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The <see cref="T:System.Windows.Forms.Control" /> class is the base class for all controls used in a Windows Forms application. Because this class is not typically used to create an instance of the class, this constructor is typically not called directly but is instead called by a derived class.</para><para>This version of the <see cref="M:System.Windows.Forms.Control.#ctor" /> constructor sets the initial <see cref="P:System.Windows.Forms.Control.Text" /> property value to the <paramref name="text" /> parameter value. The initial <see cref="P:System.Windows.Forms.Control.Size" /> and <see cref="P:System.Windows.Forms.Control.Location" /> of the control are determined by the <paramref name="left" />, <paramref name="top" />, <paramref name="width" /> and <paramref name="height" /> parameter values.</para><block subset="none" type="note"><para>To maintain better performance, do not set the size of a control in its constructor. The preferred method is to override the <see cref="P:System.Windows.Forms.Control.DefaultSize" /> property.</para></block></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Initializes a new instance of the <see cref="T:System.Windows.Forms.Control" /> class with specific text, size, and location.</para></summary><param name="text"><attribution license="cc4" from="Microsoft" modified="false" />The text displayed by the control. </param><param name="left"><attribution license="cc4" from="Microsoft" modified="false" />The <see cref="P:System.Drawing.Point.X" /> position of the control, in pixels, from the left edge of the control's container. The value is assigned to the <see cref="P:System.Windows.Forms.Control.Left" /> property. </param><param name="top"><attribution license="cc4" from="Microsoft" modified="false" />The <see cref="P:System.Drawing.Point.Y" /> position of the control, in pixels, from the top edge of the control's container. The value is assigned to the <see cref="P:System.Windows.Forms.Control.Top" /> property. </param><param name="width"><attribution license="cc4" from="Microsoft" modified="false" />The width of the control, in pixels. The value is assigned to the <see cref="P:System.Windows.Forms.Control.Width" /> property. </param><param name="height"><attribution license="cc4" from="Microsoft" modified="false" />The height of the control, in pixels. The value is assigned to the <see cref="P:System.Windows.Forms.Control.Height" /> property. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName=".ctor"><MemberSignature Language="C#" Value="public Control (System.Windows.Forms.Control parent, string text, int left, int top, int width, int height);" /><MemberType>Constructor</MemberType><Parameters><Parameter Name="parent" Type="System.Windows.Forms.Control" /><Parameter Name="text" Type="System.String" /><Parameter Name="left" Type="System.Int32" /><Parameter Name="top" Type="System.Int32" /><Parameter Name="width" Type="System.Int32" /><Parameter Name="height" Type="System.Int32" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The <see cref="T:System.Windows.Forms.Control" /> class is the base class for all controls used in a Windows Forms application. Because this class is not typically used to create an instance of the class, this constructor is typically not called directly but is instead called by a derived class.</para><para>This version of the <see cref="M:System.Windows.Forms.Control.#ctor" /> constructor sets the initial <see cref="P:System.Windows.Forms.Control.Text" /> property value to the <paramref name="text" /> parameter value. The constructor also adds the control to the parent control's <see cref="T:System.Windows.Forms.Control.ControlCollection" />. The initial <see cref="P:System.Windows.Forms.Control.Size" /> and <see cref="P:System.Windows.Forms.Control.Location" /> of the control are determined by the <paramref name="left" />, <paramref name="top" />, <paramref name="width" /> and <paramref name="height" /> parameter values.</para><block subset="none" type="note"><para>To maintain better performance, do not set the size of a control in its constructor. The preferred method is to override the <see cref="P:System.Windows.Forms.Control.DefaultSize" /> property.</para></block></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Initializes a new instance of the <see cref="T:System.Windows.Forms.Control" /> class as a child control, with specific text, size, and location.</para></summary><param name="parent"><attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Windows.Forms.Control" /> to be the parent of the control. </param><param name="text"><attribution license="cc4" from="Microsoft" modified="false" />The text displayed by the control. </param><param name="left"><attribution license="cc4" from="Microsoft" modified="false" />The <see cref="P:System.Drawing.Point.X" /> position of the control, in pixels, from the left edge of the control's container. The value is assigned to the <see cref="P:System.Windows.Forms.Control.Left" /> property. </param><param name="top"><attribution license="cc4" from="Microsoft" modified="false" />The <see cref="P:System.Drawing.Point.Y" /> position of the control, in pixels, from the top edge of the control's container. The value is assigned to the <see cref="P:System.Windows.Forms.Control.Top" /> property. </param><param name="width"><attribution license="cc4" from="Microsoft" modified="false" />The width of the control, in pixels. The value is assigned to the <see cref="P:System.Windows.Forms.Control.Width" /> property. </param><param name="height"><attribution license="cc4" from="Microsoft" modified="false" />The height of the control, in pixels. The value is assigned to the <see cref="P:System.Windows.Forms.Control.Height" /> property. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="AccessibilityNotifyClients"><MemberSignature Language="C#" Value="protected void AccessibilityNotifyClients (System.Windows.Forms.AccessibleEvents accEvent, int childID);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="accEvent" Type="System.Windows.Forms.AccessibleEvents" /><Parameter Name="childID" Type="System.Int32" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>You must call the <see cref="M:System.Windows.Forms.Control.ControlAccessibleObject.NotifyClients(System.Windows.Forms.AccessibleEvents)" /> method for each <see cref="T:System.Windows.Forms.AccessibleEvents" /> the accessibility client applications are to be notified of. The <see cref="M:System.Windows.Forms.Control.ControlAccessibleObject.NotifyClients(System.Windows.Forms.AccessibleEvents)" /> method is typically called when a property is set or from within an event handler. For example, you might call the <see cref="M:System.Windows.Forms.Control.ControlAccessibleObject.NotifyClients(System.Windows.Forms.AccessibleEvents)" /> method and pass in an <see cref="T:System.Windows.Forms.AccessibleEvents" /> value of Hide from within the event handler for the <see cref="E:System.Windows.Forms.Control.VisibleChanged" /> event.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Notifies the accessibility client applications of the specified <see cref="T:System.Windows.Forms.AccessibleEvents" /> for the specified child control.</para></summary><param name="accEvent"><attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Windows.Forms.AccessibleEvents" /> to notify the accessibility client applications of. </param><param name="childID"><attribution license="cc4" from="Microsoft" modified="false" />The child <see cref="T:System.Windows.Forms.Control" /> to notify of the accessible event. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes></Member><Member MemberName="AccessibilityNotifyClients"><MemberSignature Language="C#" Value="protected void AccessibilityNotifyClients (System.Windows.Forms.AccessibleEvents accEvent, int objectID, int childID);" /><MemberType>Method</MemberType><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="accEvent" Type="System.Windows.Forms.AccessibleEvents" /><Parameter Name="objectID" Type="System.Int32" /><Parameter Name="childID" Type="System.Int32" /></Parameters><Docs><remarks>To be added.</remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Notifies the accessibility client applications of the specified <see cref="T:System.Windows.Forms.AccessibleEvents" /> for the specified child control .</para></summary><param name="accEvent"><attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Windows.Forms.AccessibleEvents" /> to notify the accessibility client applications of.</param><param name="objectID"><attribution license="cc4" from="Microsoft" modified="false" />The identifier of the <see cref="T:System.Windows.Forms.AccessibleObject" />.</param><param name="childID"><attribution license="cc4" from="Microsoft" modified="false" />The child <see cref="T:System.Windows.Forms.Control" /> to notify of the accessible event.</param></Docs></Member><Member MemberName="AccessibilityObject"><MemberSignature Language="C#" Value="public System.Windows.Forms.AccessibleObject AccessibilityObject { get; }" /><MemberType>Property</MemberType><Attributes><Attribute><AttributeName>System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Hidden)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.Browsable(false)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes><ReturnValue><ReturnType>System.Windows.Forms.AccessibleObject</ReturnType></ReturnValue><Docs><value>To be added.</value><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>To control the instance returned from this method, override the <see cref="M:System.Windows.Forms.Control.CreateAccessibilityInstance" /> method.</para><para>If no <see cref="T:System.Windows.Forms.AccessibleObject" /> is currently assigned to the control, a new instance of one is created.</para><block subset="none" type="note"><para>To get or set the <see cref="P:System.Windows.Forms.Control.AccessibilityObject" /> property, you must add a reference to the Accessibility assembly installed with the dnprdnshort.</para></block><para>For more information about accessible objects, see the "Active Accessibility" section of the MSDN library at http://msdn.microsoft.com/library.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets the <see cref="T:System.Windows.Forms.AccessibleObject" /> assigned to the control.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="AccessibleDefaultActionDescription"><MemberSignature Language="C#" Value="public string AccessibleDefaultActionDescription { set; get; }" /><MemberType>Property</MemberType><Attributes><Attribute><AttributeName>System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Hidden)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.Browsable(false)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes><ReturnValue><ReturnType>System.String</ReturnType></ReturnValue><Docs><value>To be added.</value><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>An object's <see cref="P:System.Windows.Forms.Control.AccessibleDefaultActionDescription" /> property describes the object's primary method of manipulation from the user's viewpoint. This property should be a verb or a short verb phrase.</para><block subset="none" type="note"><para>Not all objects have default actions, and some objects might have a default action that is related to its <see cref="P:System.Windows.Forms.AccessibleObject.Value" /> property, such as in the following examples: </para></block><list type="bullet"><item><para>A selected check box has a default action of "Uncheck" and a value of "Checked." </para></item><item><para>A cleared check box has a default action of "Check" and a value of "Unchecked." </para></item><item><para>A button labeled "Print" has a default action of "Press," with no value.</para></item><item><para>A label or a text box control that shows "Printer" has no default action, but would have a value of "Printer." </para></item></list><para>For more information about properties of accessible objects, see the "Content of Descriptive Properties" topic in the MSDN library at http://msdn.microsoft.com/library.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets or sets the default action description of the control for use by accessibility client applications.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="AccessibleDescription"><MemberSignature Language="C#" Value="public string AccessibleDescription { set; get; }" /><MemberType>Property</MemberType><Attributes><Attribute><AttributeName>System.ComponentModel.DefaultValue(null)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.Localizable(true)</AttributeName></Attribute></Attributes><ReturnValue><ReturnType>System.String</ReturnType></ReturnValue><Docs><value>To be added.</value><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>An object's <see cref="P:System.Windows.Forms.Control.AccessibleDescription" /> property provides a textual description about an object's visual appearance. The description is primarily used to provide greater context for low-vision or blind users, but can also be used for context searching or other applications.</para><para>The <see cref="P:System.Windows.Forms.Control.AccessibleDescription" /> property is needed if the description is not obvious, or if it is redundant based on the object's <see cref="P:System.Windows.Forms.Control.AccessibleName" />, <see cref="P:System.Windows.Forms.Control.AccessibleRole" />, <see cref="P:System.Windows.Forms.AccessibleObject.State" />, and <see cref="P:System.Windows.Forms.AccessibleObject.Value" /> properties. For example, a button with "OK" would not need additional information, but a button that shows a picture of a cactus would. The <see cref="P:System.Windows.Forms.Control.AccessibleName" />, and <see cref="P:System.Windows.Forms.Control.AccessibleRole" /> (and perhaps <see cref="P:System.Windows.Forms.AccessibleObject.Help" />) properties for the cactus button would describe its purpose, but the <see cref="P:System.Windows.Forms.Control.AccessibleDescription" /> property would convey information that is less tangible, such as "A button that shows a picture of a cactus." </para><para>For more information about properties of accessible objects, see the "Content of Descriptive Properties" topic in the MSDN library at http://msdn.microsoft.com/library.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets or sets the description of the control used by accessibility client applications.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="AccessibleName"><MemberSignature Language="C#" Value="public string AccessibleName { set; get; }" /><MemberType>Property</MemberType><Attributes><Attribute><AttributeName>System.ComponentModel.DefaultValue(null)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.Localizable(true)</AttributeName></Attribute></Attributes><ReturnValue><ReturnType>System.String</ReturnType></ReturnValue><Docs><value>To be added.</value><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The <see cref="P:System.Windows.Forms.Control.AccessibleName" /> property is a label that briefly describes and identifies the object within its container, such as the text in a <see cref="T:System.Windows.Forms.Button" />, the name of a <see cref="T:System.Windows.Forms.MenuItem" />, or a label displayed next to a <see cref="T:System.Windows.Forms.TextBox" /> control.</para><para>For more information about properties of accessible objects, see the "Content of Descriptive Properties" topic in the MSDN library at http://msdn.microsoft.com/library.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets or sets the name of the control used by accessibility client applications.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="AccessibleRole"><MemberSignature Language="C#" Value="public System.Windows.Forms.AccessibleRole AccessibleRole { set; get; }" /><MemberType>Property</MemberType><Attributes><Attribute><AttributeName>System.ComponentModel.DefaultValue(System.Windows.Forms.AccessibleRole.Default)</AttributeName></Attribute></Attributes><ReturnValue><ReturnType>System.Windows.Forms.AccessibleRole</ReturnType></ReturnValue><Docs><value>To be added.</value><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The <see cref="P:System.Windows.Forms.Control.AccessibleRole" /> property describes what kind of user interface element an object is. If the control's role cannot be determined, the <see cref="P:System.Windows.Forms.Control.AccessibleRole" /> property is set to Default.</para><para>For more information about properties of accessible objects, see the "Content of Descriptive Properties" topic in the MSDN library at http://msdn.microsoft.com/library.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets or sets the accessible role of the control </para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="AllowDrop"><MemberSignature Language="C#" Value="public virtual bool AllowDrop { set; get; }" /><MemberType>Property</MemberType><Attributes><Attribute><AttributeName>System.ComponentModel.DefaultValue(false)</AttributeName></Attribute></Attributes><ReturnValue><ReturnType>System.Boolean</ReturnType></ReturnValue><Docs><value>To be added.</value><remarks>To be added.</remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets or sets a value indicating whether the control can accept data that the user drags onto it.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="Anchor"><MemberSignature Language="C#" Value="public virtual System.Windows.Forms.AnchorStyles Anchor { set; get; }" /><MemberType>Property</MemberType><Attributes><Attribute><AttributeName>System.ComponentModel.DefaultValue(System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.RefreshProperties(System.ComponentModel.RefreshProperties.Repaint)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.Localizable(true)</AttributeName></Attribute></Attributes><ReturnValue><ReturnType>System.Windows.Forms.AnchorStyles</ReturnType></ReturnValue><Docs><value>To be added.</value><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Use the <see cref="P:System.Windows.Forms.Control.Anchor" /> property to define how a control is automatically resized as its parent control is resized. Anchoring a control to its parent control ensures that the anchored edges remain in the same position relative to the edges of the parent control when the parent control is resized.</para><para>You can anchor a control to one or more edges of its container. For example, if you have a <see cref="T:System.Windows.Forms.Form" /> with a <see cref="T:System.Windows.Forms.Button" /> whose <see cref="P:System.Windows.Forms.Control.Anchor" /> property value is set to Top and Bottom, the <see cref="T:System.Windows.Forms.Button" /> is stretched to maintain the anchored distance to the top and bottom edges of the <see cref="T:System.Windows.Forms.Form" /> as the <see cref="P:System.Windows.Forms.Control.Height" /> of the <see cref="T:System.Windows.Forms.Form" /> is increased.</para><block subset="none" type="note"><para>The <see cref="P:System.Windows.Forms.Control.Anchor" /> and <see cref="P:System.Windows.Forms.Control.Dock" /> properties are mutually exclusive. Only one can be set at a time, and the last one set takes precedence.</para></block></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets or sets the edges of the container to which a control is bound and determines how a control is resized with its parent. </para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="AutoScrollOffset"><MemberSignature Language="C#" Value="public virtual System.Drawing.Point AutoScrollOffset { set; get; }" /><MemberType>Property</MemberType><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.DefaultValue(typeof(System.Drawing.Point), "0, 0")</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.Browsable(false)</AttributeName></Attribute></Attributes><ReturnValue><ReturnType>System.Drawing.Point</ReturnType></ReturnValue><Docs><value>To be added.</value><remarks>To be added.</remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets or sets where this control is scrolled to in <see cref="M:System.Windows.Forms.ScrollableControl.ScrollControlIntoView(System.Windows.Forms.Control)" />.</para></summary></Docs></Member><Member MemberName="AutoSize"><MemberSignature Language="C#" Value="public virtual bool AutoSize { set; get; }" /><MemberType>Property</MemberType><Attributes><Attribute><AttributeName>System.ComponentModel.DefaultValue(false)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.Browsable(false)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Hidden)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.Localizable(true)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.RefreshProperties(System.ComponentModel.RefreshProperties.All)</AttributeName></Attribute></Attributes><ReturnValue><ReturnType>System.Boolean</ReturnType></ReturnValue><Docs><value>To be added.</value><since version=".NET 2.0" /><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>This property is not relevant for this class.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>This property is not relevant for this class.</para></summary></Docs><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="AutoSizeChanged"><MemberSignature Language="C#" Value="public event EventHandler AutoSizeChanged;" /><MemberType>Event</MemberType><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.Browsable(false)</AttributeName></Attribute></Attributes><ReturnValue><ReturnType>System.EventHandler</ReturnType></ReturnValue><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>This event is not relevant for this class.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>This event is not relevant for this class.</para></summary></Docs></Member><Member MemberName="BackColor"><MemberSignature Language="C#" Value="public virtual System.Drawing.Color BackColor { set; get; }" /><MemberType>Property</MemberType><Attributes><Attribute><AttributeName>System.Runtime.InteropServices.DispId(-501)</AttributeName></Attribute></Attributes><ReturnValue><ReturnType>System.Drawing.Color</ReturnType></ReturnValue><Docs><value>To be added.</value><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The <see cref="P:System.Windows.Forms.Control.BackColor" /> property does not support transparent colors unless the SupportsTransparentBackColor value of <see cref="T:System.Windows.Forms.ControlStyles" /> is set to true.</para><para>The <see cref="P:System.Windows.Forms.Control.BackColor" /> property is an ambient property. An ambient property is a control property that, if not set, is retrieved from the parent control. For example, a <see cref="T:System.Windows.Forms.Button" /> will have the same <see cref="P:System.Windows.Forms.Control.BackColor" /> as its parent <see cref="T:System.Windows.Forms.Form" /> by default. For more information about ambient properties, see the <see cref="T:System.Windows.Forms.AmbientProperties" /> class or the <see cref="T:System.Windows.Forms.Control" /> class overview.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets or sets the background color for the control.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="BackColorChanged"><MemberSignature Language="C#" Value="public event EventHandler BackColorChanged;" /><MemberType>Event</MemberType><ReturnValue><ReturnType>System.EventHandler</ReturnType></ReturnValue><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>This event is raised if the <see cref="P:System.Windows.Forms.Control.BackColor" /> property is changed by either a programmatic modification or user interaction.</para><para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Occurs when the value of the <see cref="P:System.Windows.Forms.Control.BackColor" /> property changes.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="BackgroundImage"><MemberSignature Language="C#" Value="public virtual System.Drawing.Image BackgroundImage { set; get; }" /><MemberType>Property</MemberType><Attributes><Attribute><AttributeName>System.ComponentModel.DefaultValue(null)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.Localizable(true)</AttributeName></Attribute></Attributes><ReturnValue><ReturnType>System.Drawing.Image</ReturnType></ReturnValue><Docs><value>To be added.</value><remarks><attribution license="cc4" from="Microsoft" modified="false" /><list type="bullet"><item><para>Use the <see cref="P:System.Windows.Forms.Control.BackgroundImage" /> property to place a graphic image onto a control. </para></item></list><block subset="none" type="note"><para>Images with translucent or transparent colors are not supported by Windows Forms controls as background images.</para><para>This property is not supported on child controls whose <see cref="P:System.Windows.Forms.Form.RightToLeftLayout" /> property is true.</para></block></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets or sets the background image displayed in the control.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="BackgroundImageChanged"><MemberSignature Language="C#" Value="public event EventHandler BackgroundImageChanged;" /><MemberType>Event</MemberType><ReturnValue><ReturnType>System.EventHandler</ReturnType></ReturnValue><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>This event is raised if the <see cref="P:System.Windows.Forms.Control.BackgroundImage" /> property is changed by either a programmatic modification or user interaction.</para><para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Occurs when the value of the <see cref="P:System.Windows.Forms.Control.BackgroundImage" /> property changes.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="BackgroundImageLayout"><MemberSignature Language="C#" Value="public virtual System.Windows.Forms.ImageLayout BackgroundImageLayout { set; get; }" /><MemberType>Property</MemberType><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.Localizable(true)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.DefaultValue(System.Windows.Forms.ImageLayout.Tile)</AttributeName></Attribute></Attributes><ReturnValue><ReturnType>System.Windows.Forms.ImageLayout</ReturnType></ReturnValue><Docs><value>To be added.</value><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Use the <see cref="P:System.Windows.Forms.Control.BackgroundImageLayout" /> property to specify the position and behavior of an image you have placed onto a control. <see cref="P:System.Windows.Forms.Control.BackgroundImageLayout" /> takes effect only if the <see cref="P:System.Windows.Forms.Control.BackgroundImage" /> property is set.</para><para>You can increase performance for large images if you set <see cref="P:System.Windows.Forms.Control.BackgroundImageLayout" /> to something other than <see cref="F:System.Windows.Forms.ImageLayout.Tile" />.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets or sets the background image layout as defined in the <see cref="T:System.Windows.Forms.ImageLayout" /> enumeration.</para></summary></Docs></Member><Member MemberName="BackgroundImageLayoutChanged"><MemberSignature Language="C#" Value="public event EventHandler BackgroundImageLayoutChanged;" /><MemberType>Event</MemberType><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.EventHandler</ReturnType></ReturnValue><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>This event is raised if the <see cref="P:System.Windows.Forms.Control.BackgroundImageLayout" /> property changes either programmatically or by user interaction.</para><para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Occurs when the <see cref="P:System.Windows.Forms.Control.BackgroundImageLayout" /> property changes.</para></summary></Docs></Member><Member MemberName="BeginInvoke"><MemberSignature Language="C#" Value="public IAsyncResult BeginInvoke (Delegate method);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.IAsyncResult</ReturnType></ReturnValue><Parameters><Parameter Name="method" Type="System.Delegate" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The delegate is called asynchronously, and this method returns immediately. You can call this method from any thread, even the thread that owns the control's handle. If the control's handle does not exist yet, this method searches up the control's parent chain until it finds a control or form that does have a window handle. If no appropriate handle can be found, <see cref="M:System.Windows.Forms.Control.BeginInvoke(System.Delegate)" /> will throw an exception. Exceptions within the delegate method are considered untrapped and will be sent to the application's untrapped exception handler.</para><para>You can call <see cref="M:System.Windows.Forms.Control.EndInvoke(System.IAsyncResult)" /> to retrieve the return value from the delegate, if neccesary, but this is not required. <see cref="M:System.Windows.Forms.Control.EndInvoke(System.IAsyncResult)" /> will block until the return value can be retrieved.</para><block subset="none" type="note"><para>Most methods on a control can only be called from the thread where the control was created. In addition to the <see cref="P:System.Windows.Forms.Control.InvokeRequired" /> property, there are four methods on a control that are thread safe: <see cref="M:System.Windows.Forms.Control.Invoke(System.Delegate)" />, <see cref="M:System.Windows.Forms.Control.BeginInvoke(System.Delegate)" />, <see cref="M:System.Windows.Forms.Control.EndInvoke(System.IAsyncResult)" />, and <see cref="M:System.Windows.Forms.Control.CreateGraphics" /> if the handle for the control has already been created. Calling <see cref="M:System.Windows.Forms.Control.CreateGraphics" /> before the control's handle has been created on a background thread can cause illegal cross thread calls. For all other method calls, you should use one of the invoke methods to marshal the call to the control's thread. The invoke methods always invoke their callbacks on the control's thread.</para></block><block subset="none" type="note"><para>An exception might be thrown if the thread that should process the message is no longer active.</para></block></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Executes the specified delegate asynchronously on the thread that the control's underlying handle was created on.</para></summary><returns><attribution license="cc4" from="Microsoft" modified="false" /><para>An <see cref="T:System.IAsyncResult" /> that represents the result of the <see cref="M:System.Windows.Forms.Control.BeginInvoke(System.Delegate)" /> operation.</para></returns><param name="method"><attribution license="cc4" from="Microsoft" modified="false" />A delegate to a method that takes no parameters. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes></Member><Member MemberName="BeginInvoke"><MemberSignature Language="C#" Value="public IAsyncResult BeginInvoke (Delegate method, object[] args);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.IAsyncResult</ReturnType></ReturnValue><Parameters><Parameter Name="method" Type="System.Delegate" /><Parameter Name="args" Type="System.Object[]"><Attributes><Attribute><AttributeName>System.ParamArray</AttributeName></Attribute></Attributes></Parameter></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The delegate is called asynchronously, and this method returns immediately. You can call this method from any thread, even the thread that owns the control's handle. If the control's handle does not exist yet, this method searches up the control's parent chain until it finds a control or form that does have a window handle. If no appropriate handle can be found, <see cref="M:System.Windows.Forms.Control.BeginInvoke(System.Delegate)" /> will throw an exception. Exceptions within the delegate method are considered untrapped and will be sent to the application's untrapped exception handler.</para><para>You can call <see cref="M:System.Windows.Forms.Control.EndInvoke(System.IAsyncResult)" /> to retrieve the return value from the delegate, if neccesary, but this is not required. <see cref="M:System.Windows.Forms.Control.EndInvoke(System.IAsyncResult)" /> will block until the return value can be retrieved.</para><block subset="none" type="note"><para>Most methods on a control can only be called from the thread where the control was created. In addition to the <see cref="P:System.Windows.Forms.Control.InvokeRequired" /> property, there are four methods on a control that are thread safe: <see cref="M:System.Windows.Forms.Control.Invoke(System.Delegate)" />, <see cref="M:System.Windows.Forms.Control.BeginInvoke(System.Delegate)" />, <see cref="M:System.Windows.Forms.Control.EndInvoke(System.IAsyncResult)" />, and <see cref="M:System.Windows.Forms.Control.CreateGraphics" /> if the handle for the control has already been created. Calling <see cref="M:System.Windows.Forms.Control.CreateGraphics" /> before the control's handle has been created on a background thread can cause illegal cross thread calls. For all other method calls, you should use one of the invoke methods to marshal the call to the control's thread. The invoke methods always invoke their callbacks on the control's thread.</para></block><block subset="none" type="note"><para>An exception might be thrown if the thread that should process the message is no longer active.</para></block></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Executes the specified delegate asynchronously with the specified arguments, on the thread that the control's underlying handle was created on.</para></summary><returns><attribution license="cc4" from="Microsoft" modified="false" /><para>An <see cref="T:System.IAsyncResult" /> that represents the result of the <see cref="M:System.Windows.Forms.Control.BeginInvoke(System.Delegate)" /> operation.</para></returns><param name="method"><attribution license="cc4" from="Microsoft" modified="false" />A delegate to a method that takes parameters of the same number and type that are contained in the <paramref name="args" /> parameter. </param><param name="args"><attribution license="cc4" from="Microsoft" modified="false" />An array of objects to pass as arguments to the given method. This can be null if no arguments are needed. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes></Member><Member MemberName="BindingContext"><MemberSignature Language="C#" Value="public virtual System.Windows.Forms.BindingContext BindingContext { set; get; }" /><MemberType>Property</MemberType><Attributes><Attribute><AttributeName>System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Hidden)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.Browsable(false)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes><ReturnValue><ReturnType>System.Windows.Forms.BindingContext</ReturnType></ReturnValue><Docs><value>To be added.</value><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The <see cref="T:System.Windows.Forms.BindingContext" /> of a <see cref="T:System.Windows.Forms.Control" /> is used to return a single <see cref="T:System.Windows.Forms.BindingManagerBase" /> for all data-bound controls contained by the <see cref="T:System.Windows.Forms.Control" />. The <see cref="T:System.Windows.Forms.BindingManagerBase" /> keeps all controls that are bound to the same data source synchronized. For example, setting the <see cref="P:System.Windows.Forms.BindingManagerBase.Position" /> property of the <see cref="T:System.Windows.Forms.BindingManagerBase" /> specifies the item in the underlying list that all data-bound controls point to.</para><para>For more information about creating a new <see cref="T:System.Windows.Forms.BindingContext" /> and assigning it to the <see cref="P:System.Windows.Forms.Control.BindingContext" /> property, see the <see cref="M:System.Windows.Forms.BindingContext.#ctor" />.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets or sets the <see cref="T:System.Windows.Forms.BindingContext" /> for the control.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="BindingContextChanged"><MemberSignature Language="C#" Value="public event EventHandler BindingContextChanged;" /><MemberType>Event</MemberType><ReturnValue><ReturnType>System.EventHandler</ReturnType></ReturnValue><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>To add a new <see cref="T:System.Windows.Forms.BindingContext" /> to the <see cref="T:System.Windows.Forms.Control" /> through the <see cref="P:System.Windows.Forms.Control.BindingContext" /> property, see the <see cref="M:System.Windows.Forms.BindingContext.#ctor" /> constructor.</para><para>This event is raised if the <see cref="P:System.Windows.Forms.Control.BindingContext" /> property is changed is changed by either a programmatic modification or user interaction.</para><para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Occurs when the value of the <see cref="T:System.Windows.Forms.BindingContext" /> property changes.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="Bottom"><MemberSignature Language="C#" Value="public int Bottom { get; }" /><MemberType>Property</MemberType><Attributes><Attribute><AttributeName>System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Hidden)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.Browsable(false)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes><ReturnValue><ReturnType>System.Int32</ReturnType></ReturnValue><Docs><value>To be added.</value><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The value of this property is equal to the sum of the <see cref="P:System.Windows.Forms.Control.Top" /> property value, and the <see cref="P:System.Windows.Forms.Control.Height" /> property value.</para><para>The <see cref="P:System.Windows.Forms.Control.Bottom" /> property is a read-only property. You can manipulate this property value by changing the value of the <see cref="P:System.Windows.Forms.Control.Top" /> or <see cref="P:System.Windows.Forms.Control.Height" /> properties or calling the <see cref="M:System.Windows.Forms.Control.SetBounds(System.Int32,System.Int32,System.Int32,System.Int32)" />, <see cref="M:System.Windows.Forms.Control.SetBoundsCore(System.Int32,System.Int32,System.Int32,System.Int32,System.Windows.Forms.BoundsSpecified)" />, <see cref="M:System.Windows.Forms.Control.UpdateBounds" />, or <see cref="M:System.Windows.Forms.Control.SetClientSizeCore(System.Int32,System.Int32)" /> methods.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets the distance, in pixels, between the bottom edge of the control and the top edge of its container's client area.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="Bounds"><MemberSignature Language="C#" Value="public System.Drawing.Rectangle Bounds { set; get; }" /><MemberType>Property</MemberType><Attributes><Attribute><AttributeName>System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Hidden)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.Browsable(false)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes><ReturnValue><ReturnType>System.Drawing.Rectangle</ReturnType></ReturnValue><Docs><value>To be added.</value><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The bounds of the control include the nonclient elements such as scroll bars, borders, title bars, and menus. The <see cref="M:System.Windows.Forms.Control.SetBoundsCore(System.Int32,System.Int32,System.Int32,System.Int32,System.Windows.Forms.BoundsSpecified)" /> method is called to set the <see cref="P:System.Windows.Forms.Control.Bounds" /> property. The <see cref="P:System.Windows.Forms.Control.Bounds" /> property is not always changed through its set method so you should override the <see cref="M:System.Windows.Forms.Control.SetBoundsCore(System.Int32,System.Int32,System.Int32,System.Int32,System.Windows.Forms.BoundsSpecified)" /> method to ensure that your code is executed when the <see cref="P:System.Windows.Forms.Control.Bounds" /> property is set.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets or sets the size and location of the control including its nonclient elements, in pixels, relative to the parent control.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="BringToFront"><MemberSignature Language="C#" Value="public void BringToFront ();" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters /><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The control is moved to the front of the z-order. If the control is a child of another control, the child control is moved to the front of the z-order. <see cref="M:System.Windows.Forms.Control.BringToFront" /> does not make a control a top-level control, and it does not raise the <see cref="E:System.Windows.Forms.Control.Paint" /> event.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Brings the control to the front of the z-order.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="CanEnableIme"><MemberSignature Language="C#" Value="protected virtual bool CanEnableIme { get; }" /><MemberType>Property</MemberType><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Boolean</ReturnType></ReturnValue><Docs><value>To be added.</value><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Derived classes can override this property to return false if IME is not supported.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets a value indicating whether the <see cref="P:System.Windows.Forms.Control.ImeMode" /> property can be set to an active value, to enable IME support.</para></summary></Docs></Member><Member MemberName="CanFocus"><MemberSignature Language="C#" Value="public bool CanFocus { get; }" /><MemberType>Property</MemberType><Attributes><Attribute><AttributeName>System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Hidden)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.Browsable(false)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes><ReturnValue><ReturnType>System.Boolean</ReturnType></ReturnValue><Docs><value>To be added.</value><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>In order for a control to receive input focus, the control must have a handle assigned to it, and the <see cref="P:System.Windows.Forms.Control.Visible" /> and <see cref="P:System.Windows.Forms.Control.Enabled" /> properties must both be set to true for both the control and all its parent controls, and the control must be a form or the control's outermost parent must be a form.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets a value indicating whether the control can receive focus.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="CanRaiseEvents"><MemberSignature Language="C#" Value="protected override bool CanRaiseEvents { get; }" /><MemberType>Property</MemberType><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Boolean</ReturnType></ReturnValue><Docs><value>To be added.</value><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>If this control is being hosted as an ActiveX control, this property will return false if the ActiveX control has its events frozen.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Determines if events can be raised on the control.</para></summary></Docs></Member><Member MemberName="CanSelect"><MemberSignature Language="C#" Value="public bool CanSelect { get; }" /><MemberType>Property</MemberType><Attributes><Attribute><AttributeName>System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Hidden)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.Browsable(false)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes><ReturnValue><ReturnType>System.Boolean</ReturnType></ReturnValue><Docs><value>To be added.</value><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>This property returns true if the Selectable value of <see cref="T:System.Windows.Forms.ControlStyles" /> is set to true, is contained in another control, the control itself is visible and enabled, and all its parent controls are visible and enabled.</para><para>The Windows Forms controls in the following list are not selectable and will return a value of false for the <see cref="P:System.Windows.Forms.Control.CanSelect" /> property. Controls derived from these controls are also not selectable.</para><list type="bullet"><item><para><see cref="T:System.Windows.Forms.Panel" /></para></item><item><para><see cref="T:System.Windows.Forms.GroupBox" /></para></item><item><para><see cref="T:System.Windows.Forms.PictureBox" /></para></item><item><para><see cref="T:System.Windows.Forms.ProgressBar" /></para></item><item><para><see cref="T:System.Windows.Forms.Splitter" /></para></item><item><para><see cref="T:System.Windows.Forms.Label" /></para></item><item><para><see cref="T:System.Windows.Forms.LinkLabel" /> (when there is no link present in the control) </para></item></list></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets a value indicating whether the control can be selected.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="Capture"><MemberSignature Language="C#" Value="public bool Capture { set; get; }" /><MemberType>Property</MemberType><Attributes><Attribute><AttributeName>System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Hidden)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.Browsable(false)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes><ReturnValue><ReturnType>System.Boolean</ReturnType></ReturnValue><Docs><value>To be added.</value><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>When a control has captured the mouse, it receives mouse input whether or not the cursor is within its borders. The mouse is typically only captured during drag operations.</para><para>Only the foreground window can capture the mouse. When a background window attempts to do so, the window receives messages only for mouse events that occur when the mouse cursor is within the visible portion of the window. Also, even if the foreground window has captured the mouse, the user can still click another window, bringing it to the foreground.</para><para>When the mouse is captured, shortcut keys should not work.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets or sets a value indicating whether the control has captured the mouse.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="CausesValidation"><MemberSignature Language="C#" Value="public bool CausesValidation { set; get; }" /><MemberType>Property</MemberType><Attributes><Attribute><AttributeName>System.ComponentModel.DefaultValue(true)</AttributeName></Attribute></Attributes><ReturnValue><ReturnType>System.Boolean</ReturnType></ReturnValue><Docs><value>To be added.</value><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>If the <see cref="P:System.Windows.Forms.Control.CausesValidation" /> property is set to false, the <see cref="E:System.Windows.Forms.Control.Validating" /> and <see cref="E:System.Windows.Forms.Control.Validated" /> events are suppressed.</para><para>The <see cref="P:System.Windows.Forms.Control.CausesValidation" /> property value is typically set to false for controls such as a Help button.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets or sets a value indicating whether the control causes validation to be performed on any controls that require validation when it receives focus.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="CausesValidationChanged"><MemberSignature Language="C#" Value="public event EventHandler CausesValidationChanged;" /><MemberType>Event</MemberType><ReturnValue><ReturnType>System.EventHandler</ReturnType></ReturnValue><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>This event is raised if the <see cref="P:System.Windows.Forms.Control.CausesValidation" /> property is changed by either a programmatic modification or user interaction.</para><para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Occurs when the value of the <see cref="P:System.Windows.Forms.Control.CausesValidation" /> property changes.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="ChangeUICues"><MemberSignature Language="C#" Value="public event System.Windows.Forms.UICuesEventHandler ChangeUICues;" /><MemberType>Event</MemberType><ReturnValue><ReturnType>System.Windows.Forms.UICuesEventHandler</ReturnType></ReturnValue><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Occurs when the focus or keyboard user interface (UI) cues change.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="CheckForIllegalCrossThreadCalls"><MemberSignature Language="C#" Value="public static bool CheckForIllegalCrossThreadCalls { set; get; }" /><MemberType>Property</MemberType><Attributes><Attribute><AttributeName>System.ComponentModel.Browsable(false)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Hidden)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes><ReturnValue><ReturnType>System.Boolean</ReturnType></ReturnValue><Docs><value>To be added.</value><since version=".NET 2.0" /><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>When a thread other than the creating thread of a control tries to access one of that control's methods or properties, it often leads to unpredictable results. A common invalid thread activity is a call on the wrong thread that accesses the control's <see cref="P:System.Windows.Forms.Control.Handle" /> property. Set <see cref="P:System.Windows.Forms.Control.CheckForIllegalCrossThreadCalls" /> to true to find and diagnose this thread activity more easily while debugging. </para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets or sets a value indicating whether to catch calls on the wrong thread that access a control's <see cref="P:System.Windows.Forms.Control.Handle" /> property when an application is being debugged.</para></summary></Docs><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="Click"><MemberSignature Language="C#" Value="public event EventHandler Click;" /><MemberType>Event</MemberType><ReturnValue><ReturnType>System.EventHandler</ReturnType></ReturnValue><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The <see cref="E:System.Windows.Forms.Control.Click" /> event passes an <see cref="T:System.EventArgs" /> to its event handler, so it only indicates that a click has occurred. If you need more specific mouse information (button, number of clicks, wheel rotation, or location), use the <see cref="E:System.Windows.Forms.Control.MouseClick" /> event. However, the <see cref="E:System.Windows.Forms.Control.MouseClick" /> event will not be raised if the click is caused by action other than that of the mouse, such as pressing the ENTER key.</para><para>A double-click is determined by the mouse settings of the user's operating system. The user can set the time between clicks of a mouse button that should be considered a double-click rather than two clicks. The <see cref="E:System.Windows.Forms.Control.Click" /> event is raised every time a control is double-clicked. For example, if you have event handlers for the <see cref="E:System.Windows.Forms.Control.Click" /> and <see cref="E:System.Windows.Forms.Control.DoubleClick" /> events of a <see cref="T:System.Windows.Forms.Form" />, the <see cref="E:System.Windows.Forms.Control.Click" /> and <see cref="E:System.Windows.Forms.Control.DoubleClick" /> events are raised when the form is double-clicked and both methods are called. If a control is double-clicked and that control does not support the <see cref="E:System.Windows.Forms.Control.DoubleClick" /> event, the <see cref="E:System.Windows.Forms.Control.Click" /> event might be raised twice.</para><para>You must set the StandardClick value of <see cref="T:System.Windows.Forms.ControlStyles" /> to true for this event to be raised.</para><block subset="none" type="note"><para>The following events are not raised for the <see cref="T:System.Windows.Forms.TabControl" /> class unless there is at least one <see cref="T:System.Windows.Forms.TabPage" /> in the <see cref="P:System.Windows.Forms.TabControl.TabPages" /> collection: <see cref="E:System.Windows.Forms.Control.Click" />, <see cref="E:System.Windows.Forms.Control.DoubleClick" />, <see cref="E:System.Windows.Forms.Control.MouseDown" />, <see cref="E:System.Windows.Forms.Control.MouseUp" />, <see cref="E:System.Windows.Forms.Control.MouseHover" />, <see cref="E:System.Windows.Forms.Control.MouseEnter" />, <see cref="E:System.Windows.Forms.Control.MouseLeave" /> and <see cref="E:System.Windows.Forms.Control.MouseMove" />. If there is at least one <see cref="T:System.Windows.Forms.TabPage" /> in the collection, and the user interacts with the tab control's header (where the <see cref="T:System.Windows.Forms.TabPage" /> names appear), the <see cref="T:System.Windows.Forms.TabControl" /> raises the appropriate event. However, if the user interaction is within the client area of the tab page, the <see cref="T:System.Windows.Forms.TabPage" /> raises the appropriate event.</para></block><para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Occurs when the control is clicked.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="ClientRectangle"><MemberSignature Language="C#" Value="public System.Drawing.Rectangle ClientRectangle { get; }" /><MemberType>Property</MemberType><Attributes><Attribute><AttributeName>System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Hidden)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.Browsable(false)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes><ReturnValue><ReturnType>System.Drawing.Rectangle</ReturnType></ReturnValue><Docs><value>To be added.</value><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The client area of a control is the bounds of the control, minus the nonclient elements such as scroll bars, borders, title bars, and menus.</para><para>Because client coordinates are relative to the upper-left corner of the client area of the control, the coordinates of the upper-left corner of the rectangle returned by this property are (0,0). You can use this property to obtain the size and coordinates of the client area of the control for tasks such as drawing on the surface of the control.</para><para>For more information about drawing on controls, see <format type="text/html"><a href="AAE8E1E6-4786-432B-A15E-F4C44760D302">Rendering a Windows Forms Control</a></format>.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets the rectangle that represents the client area of the control.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="ClientSize"><MemberSignature Language="C#" Value="public System.Drawing.Size ClientSize { set; get; }" /><MemberType>Property</MemberType><Attributes><Attribute><AttributeName>System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Hidden)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.Browsable(false)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes><ReturnValue><ReturnType>System.Drawing.Size</ReturnType></ReturnValue><Docs><value>To be added.</value><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The client area of a control is the bounds of the control, minus the nonclient elements such as scroll bars, borders, title bars, and menus. The <see cref="M:System.Windows.Forms.Control.SetClientSizeCore(System.Int32,System.Int32)" /> method is called to set the <see cref="P:System.Windows.Forms.Control.ClientSize" /> property. The <see cref="P:System.Windows.Forms.Control.ClientSize" /> property is not always changed through its set method so you should override the <see cref="M:System.Windows.Forms.Control.SetClientSizeCore(System.Int32,System.Int32)" /> method to ensure that your code is executed when the <see cref="P:System.Windows.Forms.Control.ClientSize" /> property is set.</para><para>The <see cref="P:System.Drawing.Size.Width" /> and <see cref="P:System.Drawing.Size.Height" /> properties represent the width and height of the client area of the control. You can use this property to obtain the size of the client area of the control for tasks such as drawing on the surface of the control.</para><para>For more information about drawing on controls, see <format type="text/html"><a href="AAE8E1E6-4786-432B-A15E-F4C44760D302">Rendering a Windows Forms Control</a></format>.</para><block subset="none" type="note"><para>You cannot bind application settings to this property. For more information on application settings, see <format type="text/html"><a href="0dd8bca5-a6bf-4ac4-8eec-5725d08b38dc">Application Settings Overview</a></format>.</para></block></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets or sets the height and width of the client area of the control.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="ClientSizeChanged"><MemberSignature Language="C#" Value="public event EventHandler ClientSizeChanged;" /><MemberType>Event</MemberType><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.EventHandler</ReturnType></ReturnValue><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>For more information about handling events, see <format type="text/html"><a href="01e4f1bc-e55e-413f-98c7-6588493e5f67">Consuming Events</a></format>. </para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Occurs when the value of the <see cref="P:System.Windows.Forms.Control.ClientSize" /> property changes. </para></summary></Docs></Member><Member MemberName="CompanyName"><MemberSignature Language="C#" Value="public string CompanyName { get; }" /><MemberType>Property</MemberType><Attributes><Attribute><AttributeName>System.ComponentModel.Description("ControlCompanyNameDescr")</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Hidden)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.Browsable(false)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes><ReturnValue><ReturnType>System.String</ReturnType></ReturnValue><Docs><value>To be added.</value><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The <see cref="P:System.Windows.Forms.Control.CompanyName" /> property is a read-only property. To change the value of this property, set the <see cref="P:System.Reflection.AssemblyCompanyAttribute.Company" /> property value of the <see cref="T:System.Reflection.AssemblyCompanyAttribute" />. The following line of C# code sets the <see cref="P:System.Windows.Forms.Control.CompanyName" /> property.</para><code>[assembly: AssemblyCompany("Microsoft")]</code><block subset="none" type="note"><para>It is strongly recommended that you provide the company name, product name, and product version. Providing this information enables the use of Windows Forms features such as <see cref="P:System.Windows.Forms.Application.UserAppDataPath" /> that make it easier to write applications that comply with the "Certified for Windows" program. For more information, see the "Certified for Windows" topic in the MSDN library at http://msdn.microsoft.com/certification.</para></block></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets the name of the company or creator of the application containing the control.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="Contains"><MemberSignature Language="C#" Value="public bool Contains (System.Windows.Forms.Control ctl);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Boolean</ReturnType></ReturnValue><Parameters><Parameter Name="ctl" Type="System.Windows.Forms.Control" /></Parameters><Docs><remarks>To be added.</remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Retrieves a value indicating whether the specified control is a child of the control.</para></summary><returns><attribution license="cc4" from="Microsoft" modified="false" /><para>true if the specified control is a child of the control; otherwise, false.</para></returns><param name="ctl"><attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Windows.Forms.Control" /> to evaluate. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="ContainsFocus"><MemberSignature Language="C#" Value="public bool ContainsFocus { get; }" /><MemberType>Property</MemberType><Attributes><Attribute><AttributeName>System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Hidden)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.Browsable(false)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes><ReturnValue><ReturnType>System.Boolean</ReturnType></ReturnValue><Docs><value>To be added.</value><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>You can use this property to determine whether a control or any of the controls contained within it has the input focus. To determine whether the control has focus, regardless of whether any of its child controls have focus, use the <see cref="P:System.Windows.Forms.Control.Focused" /> property. To give a control the input focus, use the <see cref="M:System.Windows.Forms.Control.Focus" /> or <see cref="M:System.Windows.Forms.Control.Select" /> methods.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets a value indicating whether the control, or one of its child controls, currently has the input focus.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="ContextMenu"><MemberSignature Language="C#" Value="public virtual System.Windows.Forms.ContextMenu ContextMenu { set; get; }" /><MemberType>Property</MemberType><Attributes><Attribute><AttributeName>System.ComponentModel.DefaultValue(null)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.Browsable(false)</AttributeName></Attribute></Attributes><ReturnValue><ReturnType>System.Windows.Forms.ContextMenu</ReturnType></ReturnValue><Docs><value>To be added.</value><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Use a shortcut menus to give context-specific menu options to users when they right-click on the control.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets or sets the shortcut menu associated with the control.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="ContextMenuChanged"><MemberSignature Language="C#" Value="public event EventHandler ContextMenuChanged;" /><MemberType>Event</MemberType><ReturnValue><ReturnType>System.EventHandler</ReturnType></ReturnValue><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>This event is raised if the <see cref="P:System.Windows.Forms.Control.ContextMenu" /> property is changed by either a programmatic modification or user interaction.</para><para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Occurs when the value of the <see cref="P:System.Windows.Forms.Control.ContextMenu" /> property changes.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.Browsable(false)</AttributeName></Attribute></Attributes></Member><Member MemberName="ContextMenuStrip"><MemberSignature Language="C#" Value="public virtual System.Windows.Forms.ContextMenuStrip ContextMenuStrip { set; get; }" /><MemberType>Property</MemberType><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.DefaultValue(null)</AttributeName></Attribute></Attributes><ReturnValue><ReturnType>System.Windows.Forms.ContextMenuStrip</ReturnType></ReturnValue><Docs><value>To be added.</value><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>If a <see cref="T:System.Windows.Forms.ContextMenu" /> has also been assigned to the control, the <see cref="T:System.Windows.Forms.ContextMenu" /> takes precedence over the <see cref="T:System.Windows.Forms.ContextMenuStrip" />.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets or sets the <see cref="T:System.Windows.Forms.ContextMenuStrip" /> associated with this control.</para></summary></Docs></Member><Member MemberName="ContextMenuStripChanged"><MemberSignature Language="C#" Value="public event EventHandler ContextMenuStripChanged;" /><MemberType>Event</MemberType><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.EventHandler</ReturnType></ReturnValue><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>For more information about handling events, see <format type="text/html"><a href="01e4f1bc-e55e-413f-98c7-6588493e5f67">Consuming Events</a></format>. </para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Occurs when the value of the <see cref="P:System.Windows.Forms.Control.ContextMenuStrip" /> property changes. </para></summary></Docs></Member><Member MemberName="ControlAdded"><MemberSignature Language="C#" Value="public event System.Windows.Forms.ControlEventHandler ControlAdded;" /><MemberType>Event</MemberType><Attributes><Attribute><AttributeName>System.ComponentModel.Browsable(true)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes><ReturnValue><ReturnType>System.Windows.Forms.ControlEventHandler</ReturnType></ReturnValue><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Occurs when a new control is added to the <see cref="T:System.Windows.Forms.Control.ControlCollection" />.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="ControlRemoved"><MemberSignature Language="C#" Value="public event System.Windows.Forms.ControlEventHandler ControlRemoved;" /><MemberType>Event</MemberType><Attributes><Attribute><AttributeName>System.ComponentModel.Browsable(true)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes><ReturnValue><ReturnType>System.Windows.Forms.ControlEventHandler</ReturnType></ReturnValue><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Occurs when a control is removed from the <see cref="T:System.Windows.Forms.Control.ControlCollection" />.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="Controls"><MemberSignature Language="C#" Value="public System.Windows.Forms.Control.ControlCollection Controls { get; }" /><MemberType>Property</MemberType><Attributes><Attribute><AttributeName>System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Content)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.Browsable(false)</AttributeName></Attribute></Attributes><ReturnValue><ReturnType>System.Windows.Forms.Control+ControlCollection</ReturnType></ReturnValue><Docs><value>To be added.</value><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>A <see cref="T:System.Windows.Forms.Control" /> can act as a parent to a collection of controls. For example, when several controls are added to a <see cref="T:System.Windows.Forms.Form" />, each of the controls is a member of the <see cref="T:System.Windows.Forms.Control.ControlCollection" /> assigned to the <see cref="P:System.Windows.Forms.Control.Controls" /> property of the form, which is derived from the <see cref="T:System.Windows.Forms.Control" /> class.</para><para>You can manipulate the controls in the <see cref="T:System.Windows.Forms.Control.ControlCollection" /> assigned to the <see cref="P:System.Windows.Forms.Control.Controls" /> property by using the methods available in the <see cref="T:System.Windows.Forms.Control.ControlCollection" /> class.</para><para>When adding several controls to a parent control, it is recommended that you call the <see cref="M:System.Windows.Forms.Control.SuspendLayout" /> method before initializing the controls to be added. After adding the controls to the parent control, call the <see cref="M:System.Windows.Forms.Control.ResumeLayout" /> method. Doing so will increase the performance of applications with many controls.</para><para>Use the <see cref="P:System.Windows.Forms.Control.Controls" /> property to iterate through all controls of a form, including nested controls. Use the <see cref="M:System.Windows.Forms.Control.GetNextControl(System.Windows.Forms.Control,System.Boolean)" /> method to retrieve the previous or next child control in the tab order. Use the <see cref="P:System.Windows.Forms.ContainerControl.ActiveControl" /> property to get or set the active control of a container control.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets the collection of controls contained within the control.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="CreateAccessibilityInstance"><MemberSignature Language="C#" Value="protected virtual System.Windows.Forms.AccessibleObject CreateAccessibilityInstance ();" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Windows.Forms.AccessibleObject</ReturnType></ReturnValue><Parameters /><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>If you do not explicitly call the <see cref="M:System.Windows.Forms.Control.CreateAccessibilityInstance" /> method, it will be called when the <see cref="P:System.Windows.Forms.Control.AccessibilityObject" /> property is referenced.</para><block subset="none" type="note"><para>To get or set the <see cref="P:System.Windows.Forms.Control.AccessibilityObject" /> property, you must add a reference to the Accessibility assembly installed with the dnprdnshort.</para></block></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Creates a new accessibility object for the control.</para></summary><returns><attribution license="cc4" from="Microsoft" modified="false" /><para>A new <see cref="T:System.Windows.Forms.AccessibleObject" /> for the control.</para></returns></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes></Member><Member MemberName="CreateControl"><MemberSignature Language="C#" Value="public void CreateControl ();" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters /><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The <see cref="M:System.Windows.Forms.Control.CreateControl" /> method forces a handle to be created for the control and its child controls. This method is used when you need a handle immediately for manipulation of the control or its children; simply calling a control's constructor does not create the <see cref="P:System.Windows.Forms.Control.Handle" />.</para><para><see cref="M:System.Windows.Forms.Control.CreateControl" /> does not create a control handle if the control's <see cref="P:System.Windows.Forms.Control.Visible" /> property is false. You can either call the <see cref="M:System.Windows.Forms.Control.CreateHandle" /> method or access the <see cref="P:System.Windows.Forms.Control.Handle" /> property to create the control's handle regardless of the control's visibility, but in this case, no window handles are created for the control's children.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Forces the creation of the visible control, including the creation of the handle and any visible child controls.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="CreateControlsInstance"><MemberSignature Language="C#" Value="protected virtual System.Windows.Forms.Control.ControlCollection CreateControlsInstance ();" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Windows.Forms.Control+ControlCollection</ReturnType></ReturnValue><Parameters /><Docs><remarks>To be added.</remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Creates a new instance of the control collection for the control.</para></summary><returns><attribution license="cc4" from="Microsoft" modified="false" /><para>A new instance of <see cref="T:System.Windows.Forms.Control.ControlCollection" /> assigned to the control.</para></returns></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes></Member><Member MemberName="Created"><MemberSignature Language="C#" Value="public bool Created { get; }" /><MemberType>Property</MemberType><Attributes><Attribute><AttributeName>System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Hidden)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.Browsable(false)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes><ReturnValue><ReturnType>System.Boolean</ReturnType></ReturnValue><Docs><value>To be added.</value><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The <see cref="P:System.Windows.Forms.Control.Created" /> property returns true if the <see cref="T:System.Windows.Forms.Control" /> was successfully created even though the control's handle might not have been created or recreated yet.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets a value indicating whether the control has been created.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="CreateGraphics"><MemberSignature Language="C#" Value="public System.Drawing.Graphics CreateGraphics ();" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Drawing.Graphics</ReturnType></ReturnValue><Parameters /><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The <see cref="T:System.Drawing.Graphics" /> object that you retrieve through the <see cref="M:System.Windows.Forms.Control.CreateGraphics" /> method should not normally be retained after the current Windows message has been processed, because anything painted with that object will be erased with the next WM_PAINT message. Therefore you cannot cache the <see cref="T:System.Drawing.Graphics" /> object for reuse, except to use non-visual methods like <see cref="M:System.Drawing.Graphics.MeasureString(System.String,System.Drawing.Font)" />. Instead, you must call <see cref="M:System.Windows.Forms.Control.CreateGraphics" /> every time that you want to use the <see cref="T:System.Drawing.Graphics" /> object, and then call <see cref="M:System.Drawing.Graphics.Dispose" /> when you are finished using it. For more information about Windows messages, see <see cref="M:System.Windows.Forms.Control.WndProc(System.Windows.Forms.Message@)" />.</para><para>By design, <see cref="M:System.Windows.Forms.Control.CreateGraphics" /> sets ownership to the calling thread, and fails if it is called on other threads. </para><block subset="none" type="note"><para>In addition to the <see cref="P:System.Windows.Forms.Control.InvokeRequired" /> property, there are four methods on a control that are thread safe: <see cref="M:System.Windows.Forms.Control.Invoke(System.Delegate)" />, <see cref="M:System.Windows.Forms.Control.BeginInvoke(System.Delegate)" />, <see cref="M:System.Windows.Forms.Control.EndInvoke(System.IAsyncResult)" />, and <see cref="M:System.Windows.Forms.Control.CreateGraphics" /> if the handle for the control has already been created. Calling <see cref="M:System.Windows.Forms.Control.CreateGraphics" /> before the control's handle has been created on a background thread can cause illegal cross thread calls. For all other method calls, you should use one of the invoke methods to marshal the call to the control's thread.</para></block></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Creates the <see cref="T:System.Drawing.Graphics" /> for the control.</para></summary><returns><attribution license="cc4" from="Microsoft" modified="false" /><para>The <see cref="T:System.Drawing.Graphics" /> for the control.</para></returns></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="CreateHandle"><MemberSignature Language="C#" Value="protected virtual void CreateHandle ();" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters /><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>You typically should not call the <see cref="M:System.Windows.Forms.Control.CreateHandle" /> method directly. The preferred method is to call the <see cref="M:System.Windows.Forms.Control.CreateControl" /> method, which forces a handle to be created for the control and its child controls when the control is created.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Creates a handle for the control.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes></Member><Member MemberName="CreateParams"><MemberSignature Language="C#" Value="protected virtual System.Windows.Forms.CreateParams CreateParams { get; }" /><MemberType>Property</MemberType><ReturnValue><ReturnType>System.Windows.Forms.CreateParams</ReturnType></ReturnValue><Docs><value>To be added.</value><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The <see cref="P:System.Windows.Forms.Control.CreateParams" /> property should not be overridden and used to adjust the properties of your derived control. Properties such as the <see cref="P:System.Windows.Forms.CreateParams.Caption" />, <see cref="P:System.Windows.Forms.CreateParams.Width" />, and <see cref="P:System.Windows.Forms.CreateParams.Height" /> should be set by the corresponding properties in your control such as <see cref="P:System.Windows.Forms.Control.Text" />, <see cref="P:System.Windows.Forms.Control.Width" /> and <see cref="P:System.Windows.Forms.Control.Height" />. The <see cref="T:System.Windows.Forms.CreateParams" /> should only be extended when you are wrapping a standard Windows control class or to set styles not provided by the Windows Forms namespace. For more information about creating control parameters, see the CreateWindow and CreateWindowEx functions and the CREATESTRUCT structure documentation in the MSDN library at http://msdn.microsoft.com/library.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets the required creation parameters when the control handle is created.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="Cursor"><MemberSignature Language="C#" Value="public virtual System.Windows.Forms.Cursor Cursor { set; get; }" /><MemberType>Property</MemberType><Attributes><Attribute><AttributeName>System.ComponentModel.AmbientValue(null)</AttributeName></Attribute></Attributes><ReturnValue><ReturnType>System.Windows.Forms.Cursor</ReturnType></ReturnValue><Docs><value>To be added.</value><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Assign a <see cref="T:System.Windows.Forms.Cursor" /> to the <see cref="P:System.Windows.Forms.Control.Cursor" /> property of the control to change the cursor displayed when the mouse pointer is over the control. To temporarily change the mouse cursor for all controls on your application set the <see cref="P:System.Windows.Forms.Cursor.Current" /> property. Typically you would set the <see cref="P:System.Windows.Forms.Cursor.Current" /> property to a wait cursor when populating a <see cref="T:System.Windows.Forms.ComboBox" /> or saving or loading a file.</para><para>The <see cref="P:System.Windows.Forms.Control.Cursor" /> property is an ambient property. An ambient property is a control property that, if not set, is retrieved from the parent control. For example, a <see cref="T:System.Windows.Forms.Button" /> will have the same <see cref="P:System.Windows.Forms.Control.BackColor" /> as its parent <see cref="T:System.Windows.Forms.Form" /> by default. For more information about ambient properties, see the <see cref="T:System.Windows.Forms.AmbientProperties" /> class or the <see cref="T:System.Windows.Forms.Control" /> class overview.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets or sets the cursor that is displayed when the mouse pointer is over the control.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="CursorChanged"><MemberSignature Language="C#" Value="public event EventHandler CursorChanged;" /><MemberType>Event</MemberType><ReturnValue><ReturnType>System.EventHandler</ReturnType></ReturnValue><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>This event is raised if the <see cref="P:System.Windows.Forms.Control.Cursor" /> property is changed by either a programmatic modification or user interaction.</para><para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Occurs when the value of the <see cref="P:System.Windows.Forms.Control.Cursor" /> property changes.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="DataBindings"><MemberSignature Language="C#" Value="public System.Windows.Forms.ControlBindingsCollection DataBindings { get; }" /><MemberType>Property</MemberType><Attributes><Attribute><AttributeName>System.ComponentModel.RefreshProperties(System.ComponentModel.RefreshProperties.All)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.ParenthesizePropertyName(true)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Content)</AttributeName></Attribute></Attributes><ReturnValue><ReturnType>System.Windows.Forms.ControlBindingsCollection</ReturnType></ReturnValue><Docs><value>To be added.</value><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Use the <see cref="P:System.Windows.Forms.Control.DataBindings" /> property to access the <see cref="T:System.Windows.Forms.ControlBindingsCollection" />. By adding <see cref="T:System.Windows.Forms.Binding" /> objects to the collection, you can bind any property of a control to the property of an object.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets the data bindings for the control.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="DefaultBackColor"><MemberSignature Language="C#" Value="public static System.Drawing.Color DefaultBackColor { get; }" /><MemberType>Property</MemberType><ReturnValue><ReturnType>System.Drawing.Color</ReturnType></ReturnValue><Docs><value>To be added.</value><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>This is the default <see cref="P:System.Windows.Forms.Control.BackColor" /> property value of a generic top-level control. Derived classes can have different defaults.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets the default background color of the control.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="DefaultCursor"><MemberSignature Language="C#" Value="protected virtual System.Windows.Forms.Cursor DefaultCursor { get; }" /><MemberType>Property</MemberType><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Windows.Forms.Cursor</ReturnType></ReturnValue><Docs><value>To be added.</value><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Override <see cref="P:System.Windows.Forms.Control.DefaultCursor" /> to configure a default cursor for your control. This is more efficient than setting the cursor in the control's constructor, and gives automatic support for certain cursor-related designer functions.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets or sets the default cursor for the control.</para></summary></Docs></Member><Member MemberName="DefaultFont"><MemberSignature Language="C#" Value="public static System.Drawing.Font DefaultFont { get; }" /><MemberType>Property</MemberType><ReturnValue><ReturnType>System.Drawing.Font</ReturnType></ReturnValue><Docs><value>To be added.</value><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The following table describes the value returned by <see cref="P:System.Windows.Forms.Control.DefaultFont" /> depending on the operating system and local culture.</para><list type="table"><listheader><item><term><para>System/and or Culture</para></term><description><para>Font</para></description></item></listheader><item><term><para>Windows NT 4x, Japanese version</para></term><description><para>MS UI Gothic, 9 point.</para></description></item><item><term><para>Arabic Windows</para></term><description><para>Tahoma, 8 point.</para></description></item><item><term><para>Other operating system/culture</para></term><description><para>MS Shell Dlg logical font, typically Microsoft San Serif 8 point.</para></description></item></list><para>MS Shell Dlg maps to a font set in the system registry.</para><para>If the previous fonts are not installed, the default font is Tahoma, 8 point. If Tahoma, 8 point, is not installed, <see cref="P:System.Windows.Forms.Control.DefaultFont" /> returns the value of the <see cref="P:System.Drawing.FontFamily.GenericSansSerif" /> property</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets the default font of the control.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="DefaultForeColor"><MemberSignature Language="C#" Value="public static System.Drawing.Color DefaultForeColor { get; }" /><MemberType>Property</MemberType><ReturnValue><ReturnType>System.Drawing.Color</ReturnType></ReturnValue><Docs><value>To be added.</value><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>This is the default <see cref="P:System.Windows.Forms.Control.ForeColor" /> property value of a nonparented control. Derived classes can have different defaults.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets the default foreground color of the control.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="DefaultImeMode"><MemberSignature Language="C#" Value="protected virtual System.Windows.Forms.ImeMode DefaultImeMode { get; }" /><MemberType>Property</MemberType><ReturnValue><ReturnType>System.Windows.Forms.ImeMode</ReturnType></ReturnValue><Docs><value>To be added.</value><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>An Input Method Editor (IME) is a program that enables users to enter complex characters and symbols, such as Japanese Kanji characters, by using a standard keyboard.</para><para>As implemented in the <see cref="T:System.Windows.Forms.Control" /> class, this property always returns the <see cref="F:System.Windows.Forms.ImeMode.Inherit" /> value. The <see cref="F:System.Windows.Forms.ImeMode.Inherit" /> value specifies that the IME mode is inherited from the parent control.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets the default Input Method Editor (IME) mode supported by the control.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="DefaultMargin"><MemberSignature Language="C#" Value="protected virtual System.Windows.Forms.Padding DefaultMargin { get; }" /><MemberType>Property</MemberType><ReturnValue><ReturnType>System.Windows.Forms.Padding</ReturnType></ReturnValue><Docs><value>To be added.</value><remarks>To be added.</remarks><since version=".NET 2.0" /><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets the space, in pixels, that is specified by default between controls.</para></summary></Docs><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="DefaultMaximumSize"><MemberSignature Language="C#" Value="protected virtual System.Drawing.Size DefaultMaximumSize { get; }" /><MemberType>Property</MemberType><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Drawing.Size</ReturnType></ReturnValue><Docs><value>To be added.</value><remarks>To be added.</remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets the length and height, in pixels, that is specified as the default maximum size of a control.</para></summary></Docs></Member><Member MemberName="DefaultMinimumSize"><MemberSignature Language="C#" Value="protected virtual System.Drawing.Size DefaultMinimumSize { get; }" /><MemberType>Property</MemberType><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Drawing.Size</ReturnType></ReturnValue><Docs><value>To be added.</value><remarks>To be added.</remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets the length and height, in pixels, that is specified as the default minimum size of a control.</para></summary></Docs></Member><Member MemberName="DefaultPadding"><MemberSignature Language="C#" Value="protected virtual System.Windows.Forms.Padding DefaultPadding { get; }" /><MemberType>Property</MemberType><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Windows.Forms.Padding</ReturnType></ReturnValue><Docs><value>To be added.</value><remarks>To be added.</remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets the internal spacing, in pixels, of the contents of a control.</para></summary></Docs></Member><Member MemberName="DefaultSize"><MemberSignature Language="C#" Value="protected virtual System.Drawing.Size DefaultSize { get; }" /><MemberType>Property</MemberType><ReturnValue><ReturnType>System.Drawing.Size</ReturnType></ReturnValue><Docs><value>To be added.</value><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The <see cref="P:System.Windows.Forms.Control.DefaultSize" /> property represents the <see cref="T:System.Drawing.Size" /> of the control when it is initially created. You can adjust the size of the control by setting its <see cref="P:System.Windows.Forms.Control.Size" /> property value.</para><block subset="none" type="note"><para>To maintain better performance, do not set the <see cref="T:System.Drawing.Size" /> of a control in its constructor. The preferred method is to override the <see cref="P:System.Windows.Forms.Control.DefaultSize" /> property.</para></block><block subset="none" type="note"><para>On Windows Server 2003 systems, the size of a <see cref="T:System.Windows.Forms.Form" /> is restricted by the maximum pixel width and height of the monitor. </para></block></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets the default size of the control.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="DefWndProc"><MemberSignature Language="C#" Value="protected virtual void DefWndProc (ref System.Windows.Forms.Message m);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="m" Type="System.Windows.Forms.Message&amp;" RefType="ref" /></Parameters><Docs><param name="m">To be added.</param><summary>To be added.</summary><remarks>To be added.</remarks></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes></Member><Member MemberName="DestroyHandle"><MemberSignature Language="C#" Value="protected virtual void DestroyHandle ();" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters /><Docs><remarks>To be added.</remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Destroys the handle associated with the control.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes></Member><Member MemberName="DisplayRectangle"><MemberSignature Language="C#" Value="public virtual System.Drawing.Rectangle DisplayRectangle { get; }" /><MemberType>Property</MemberType><Attributes><Attribute><AttributeName>System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Hidden)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.Browsable(false)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes><ReturnValue><ReturnType>System.Drawing.Rectangle</ReturnType></ReturnValue><Docs><value>To be added.</value><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The <see cref="P:System.Windows.Forms.Control.DisplayRectangle" /> property returns the client rectangle of the display area of the control. For the base control class, this is equal to the client rectangle. However, inheriting controls might want to change this if their client area differs from their display area. The display rectangle is the smallest <see cref="T:System.Drawing.Rectangle" /> that encloses a control and is used to lay out controls.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets the rectangle that represents the display area of the control.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="Dispose"><MemberSignature Language="C#" Value="protected override void Dispose (bool disposing);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="disposing" Type="System.Boolean" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>This method is called by the public Dispose() method and the <see cref="M:System.Object.Finalize" /> method. Dispose() invokes the protected Dispose(Boolean) method with the <paramref name="disposing" /> parameter set to true. <see cref="M:System.Object.Finalize" /> invokes Dispose with <paramref name="disposing" /> set to false.</para><para>When the <paramref name="disposing" /> parameter is true, this method releases all resources held by any managed objects that this <see cref="T:System.Windows.Forms.Control" /> references. This method invokes the Dispose() method of each referenced object.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Releases the unmanaged resources used by the <see cref="T:System.Windows.Forms.Control" /> and its child controls and optionally releases the managed resources.</para></summary><param name="disposing"><attribution license="cc4" from="Microsoft" modified="false" />true to release both managed and unmanaged resources; false to release only unmanaged resources. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="Disposing"><MemberSignature Language="C#" Value="public bool Disposing { get; }" /><MemberType>Property</MemberType><Attributes><Attribute><AttributeName>System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Hidden)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.Browsable(false)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes><ReturnValue><ReturnType>System.Boolean</ReturnType></ReturnValue><Docs><value>To be added.</value><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>When this property returns true, the base <see cref="T:System.Windows.Forms.Control" /> class is in the process of disposing. After the control is disposed of, it can no longer be referenced as a valid Windows control. Even though the instance of a control is disposed of, it is still maintained in memory until it is removed from memory through garbage collection. When a control is disposed of, you cannot call its <see cref="M:System.Windows.Forms.Control.RecreateHandle" /> method.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets a value indicating whether the base <see cref="T:System.Windows.Forms.Control" /> class is in the process of disposing.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="Dock"><MemberSignature Language="C#" Value="public virtual System.Windows.Forms.DockStyle Dock { set; get; }" /><MemberType>Property</MemberType><Attributes><Attribute><AttributeName>System.ComponentModel.DefaultValue(System.Windows.Forms.DockStyle.None)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.RefreshProperties(System.ComponentModel.RefreshProperties.Repaint)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.Localizable(true)</AttributeName></Attribute></Attributes><ReturnValue><ReturnType>System.Windows.Forms.DockStyle</ReturnType></ReturnValue><Docs><value>To be added.</value><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Use the <see cref="P:System.Windows.Forms.Control.Dock" /> property to define how a control is automatically resized as its parent control is resized. For example, setting <see cref="P:System.Windows.Forms.Control.Dock" /> to <see cref="F:System.Windows.Forms.DockStyle.Left" /> causes the control to align itself with the left edges of its parent control and to resize as the parent control is resized. Controls are docked in their Z-order, which is the visual layering of controls on a form along the form's Z-axis (depth).</para><para>A control can be docked to one edge of its parent container or can be docked to all edges and fill the parent container. </para><para>Setting the <see cref="P:System.Windows.Forms.Control.Margin" /> property on a docked control has no effect on the distance of the control from the the edges of its container.</para><block subset="none" type="note"><para>The <see cref="P:System.Windows.Forms.Control.Anchor" /> and <see cref="P:System.Windows.Forms.Control.Dock" /> properties are mutually exclusive. Only one can be set at a time, and the last one set takes precedence.</para></block></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets or sets which control borders are docked to its parent control and determines how a control is resized with its parent.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="DockChanged"><MemberSignature Language="C#" Value="public event EventHandler DockChanged;" /><MemberType>Event</MemberType><ReturnValue><ReturnType>System.EventHandler</ReturnType></ReturnValue><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>This event is raised if the <see cref="P:System.Windows.Forms.Control.Dock" /> property is changed by either a programmatic modification or user interaction.</para><para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Occurs when the value of the <see cref="P:System.Windows.Forms.Control.Dock" /> property changes.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="DoDragDrop"><MemberSignature Language="C#" Value="public System.Windows.Forms.DragDropEffects DoDragDrop (object data, System.Windows.Forms.DragDropEffects allowedEffects);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Windows.Forms.DragDropEffects</ReturnType></ReturnValue><Parameters><Parameter Name="data" Type="System.Object" /><Parameter Name="allowedEffects" Type="System.Windows.Forms.DragDropEffects" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The <paramref name="allowedEffects" /> parameter determines which drag operations can occur. If the drag operation needs to interoperate with applications in another process, data should either be a base managed class (<see cref="T:System.String" />, <see cref="T:System.Drawing.Bitmap" />, or <see cref="T:System.Drawing.Imaging.Metafile" />), or an object that implements <see cref="T:System.Runtime.Serialization.ISerializable" /> or <see cref="T:System.Windows.Forms.IDataObject" />.</para><para>The following describes how and when events related to drag-and-drop operations are raised.</para><para>The <see cref="M:System.Windows.Forms.Control.DoDragDrop(System.Object,System.Windows.Forms.DragDropEffects)" /> method determines the control under the current cursor location. It then checks to see if the control is a valid drop target.</para><para>If the control is a valid drop target, the <see cref="E:System.Windows.Forms.Control.GiveFeedback" /> event is raised with the drag-and-drop effect specified. For a list of drag-and-drop effects, see the <see cref="T:System.Windows.Forms.DragDropEffects" /> enumeration.</para><para>Changes in the mouse cursor position, keyboard state, and mouse button state are tracked.</para><list type="bullet"><item><para>If the user moves out of a window, the <see cref="E:System.Windows.Forms.Control.DragLeave" /> event is raised.</para></item><item><para>If the mouse enters another control, the <see cref="E:System.Windows.Forms.Control.DragEnter" /> for that control is raised.</para></item><item><para>If the mouse moves but stays within the same control, the <see cref="E:System.Windows.Forms.Control.DragOver" /> event is raised.</para></item></list><para>If there is a change in the keyboard or mouse button state, the <see cref="E:System.Windows.Forms.Control.QueryContinueDrag" /> event is raised and determines whether to continue the drag, to drop the data, or to cancel the operation based on the value of the <see cref="P:System.Windows.Forms.QueryContinueDragEventArgs.Action" /> property of the event's <see cref="T:System.Windows.Forms.QueryContinueDragEventArgs" />.</para><list type="bullet"><item><para>If the value of <see cref="T:System.Windows.Forms.DragAction" /> is Continue, the <see cref="E:System.Windows.Forms.Control.DragOver" /> event is raised to continue the operation and the <see cref="E:System.Windows.Forms.Control.GiveFeedback" /> event is raised with the new effect so appropriate visual feedback can be set. For a list of valid drop effects, see the <see cref="T:System.Windows.Forms.DragDropEffects" /> enumeration.</para><block subset="none" type="note"><para>The <see cref="E:System.Windows.Forms.Control.DragOver" /> and <see cref="E:System.Windows.Forms.Control.GiveFeedback" /> events are paired so that as the mouse moves across the drop target, the user is given the most up-to-date feedback on the mouse's position.</para></block></item><item><para>If the value of <see cref="T:System.Windows.Forms.DragAction" /> is Drop, the drop effect value is returned to the source, so the source application can perform the appropriate operation on the source data; for example, cut the data if the operation was a move.</para></item><item><para>If the value of <see cref="T:System.Windows.Forms.DragAction" /> is Cancel, the <see cref="E:System.Windows.Forms.Control.DragLeave" /> event is raised.</para></item></list><block subset="none" type="note"><para>The <see cref="M:System.Windows.Forms.Control.DoDragDrop(System.Object,System.Windows.Forms.DragDropEffects)" /> method catches all exceptions and rethrows only the following security or critical exceptions:</para></block><list type="bullet"><item><para>SecurityException</para></item><item><para>NullReferenceException</para></item><item><para>StackOverflowException</para></item><item><para>OutOfMemoryException</para></item><item><para>ThreadAbortException</para></item><item><para>ExecutionEngineException</para></item><item><para>IndexOutOfRangeException</para></item><item><para>AccessViolationException</para></item></list></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Begins a drag-and-drop operation.</para></summary><returns><attribution license="cc4" from="Microsoft" modified="false" /><para>A value from the <see cref="T:System.Windows.Forms.DragDropEffects" /> enumeration that represents the final effect that was performed during the drag-and-drop operation.</para></returns><param name="data"><attribution license="cc4" from="Microsoft" modified="false" />The data to drag. </param><param name="allowedEffects"><attribution license="cc4" from="Microsoft" modified="false" />One of the <see cref="T:System.Windows.Forms.DragDropEffects" /> values. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="DoubleBuffered"><MemberSignature Language="C#" Value="protected virtual bool DoubleBuffered { set; get; }" /><MemberType>Property</MemberType><ReturnValue><ReturnType>System.Boolean</ReturnType></ReturnValue><Docs><value>To be added.</value><since version=".NET 2.0" /><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Buffered graphics can reduce or eliminate flicker that is caused by progressive redrawing of parts of a displayed surface. Buffered graphics require that the updated graphics data is first written to a buffer. The data in the graphics buffer is then quickly written to displayed surface memory. The relatively quick switch of the displayed graphics memory typically reduces the flicker that can otherwise occur.</para><block subset="none" type="note"><para><see cref="P:System.Windows.Forms.Control.DoubleBuffered" /> is not a bindable property.</para></block></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets or sets a value indicating whether this control should redraw its surface using a secondary buffer to reduce or prevent flicker.</para></summary></Docs><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="DoubleClick"><MemberSignature Language="C#" Value="public event EventHandler DoubleClick;" /><MemberType>Event</MemberType><ReturnValue><ReturnType>System.EventHandler</ReturnType></ReturnValue><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>A double-click is determined by the mouse settings of the user's operating system. The user can set the time between clicks of a mouse button that should be considered a double-click rather than two clicks. The <see cref="E:System.Windows.Forms.Control.Click" /> event is raised every time a control is double-clicked. For example, if you have event handlers for the <see cref="E:System.Windows.Forms.Control.Click" /> and <see cref="E:System.Windows.Forms.Control.DoubleClick" /> events of a <see cref="T:System.Windows.Forms.Form" />, the <see cref="E:System.Windows.Forms.Control.Click" /> and <see cref="E:System.Windows.Forms.Control.DoubleClick" /> events are raised when the form is double-clicked and both methods are called. If a control is double-clicked and that control does not support the <see cref="E:System.Windows.Forms.Control.DoubleClick" /> event, the <see cref="E:System.Windows.Forms.Control.Click" /> event might be raised twice.</para><para>You must set the StandardDoubleClick and StandardClick values of <see cref="T:System.Windows.Forms.ControlStyles" /> to true for this event to be raised. These values might already be set to true if you are inheriting from existing Windows Forms controls.</para><block subset="none" type="note"><para>The following events are not raised for the <see cref="T:System.Windows.Forms.TabControl" /> class unless there is at least one <see cref="T:System.Windows.Forms.TabPage" /> in the <see cref="P:System.Windows.Forms.TabControl.TabPages" /> collection: <see cref="E:System.Windows.Forms.Control.Click" />, <see cref="E:System.Windows.Forms.Control.DoubleClick" />, <see cref="E:System.Windows.Forms.Control.MouseDown" />, <see cref="E:System.Windows.Forms.Control.MouseUp" />, <see cref="E:System.Windows.Forms.Control.MouseHover" />, <see cref="E:System.Windows.Forms.Control.MouseEnter" />, <see cref="E:System.Windows.Forms.Control.MouseLeave" /> and <see cref="E:System.Windows.Forms.Control.MouseMove" />. If there is at least one <see cref="T:System.Windows.Forms.TabPage" /> in the collection, and the user interacts with the tab control's header (where the <see cref="T:System.Windows.Forms.TabPage" /> names appear), the <see cref="T:System.Windows.Forms.TabControl" /> raises the appropriate event. However, if the user interaction is within the client area of the tab page, the <see cref="T:System.Windows.Forms.TabPage" /> raises the appropriate event.</para></block><para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Occurs when the control is double-clicked.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="DragDrop"><MemberSignature Language="C#" Value="public event System.Windows.Forms.DragEventHandler DragDrop;" /><MemberType>Event</MemberType><ReturnValue><ReturnType>System.Windows.Forms.DragEventHandler</ReturnType></ReturnValue><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The <see cref="P:System.Windows.Forms.DragEventArgs.X" /> and <see cref="P:System.Windows.Forms.DragEventArgs.Y" /> properties of the <see cref="T:System.Windows.Forms.DragEventArgs" /> are in screen coordinates, not client coordinates. The following line of csprcs code converts the properties to a client <see cref="T:System.Drawing.Point" />. </para><code>Point clientPoint = targetControl.PointToClient(new Point(de.X, de.Y));</code><block subset="none" type="note"><para>In versions earlier than dnprdnext, if you put a <see cref="T:System.Windows.Forms.UserControl" /> with <see cref="E:System.Windows.Forms.Control.DragEnter" /> and <see cref="E:System.Windows.Forms.Control.DragDrop" /> events on a Windows Form and drag and drop something onto the <see cref="T:System.Windows.Forms.UserControl" /> at design time, the DropDrop and DropEnter events are raised. However, when you close and reopen the solution, the <see cref="E:System.Windows.Forms.Control.DragEnter" /> and <see cref="E:System.Windows.Forms.Control.DragDrop" /> events are not raised again.</para></block><para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Occurs when a drag-and-drop operation is completed.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="DragEnter"><MemberSignature Language="C#" Value="public event System.Windows.Forms.DragEventHandler DragEnter;" /><MemberType>Event</MemberType><ReturnValue><ReturnType>System.Windows.Forms.DragEventHandler</ReturnType></ReturnValue><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The <see cref="E:System.Windows.Forms.Control.DragEnter" /> event is raised when the user first drags the mouse cursor over the control during a drag-and-drop operation.</para><block subset="none" type="note"><para>In versions earlier than dnprdnext, if you put a <see cref="T:System.Windows.Forms.UserControl" /> with <see cref="E:System.Windows.Forms.Control.DragEnter" /> and <see cref="E:System.Windows.Forms.Control.DragDrop" /> events on a Windows Form and drag and drop something onto the <see cref="T:System.Windows.Forms.UserControl" /> at design time, the DropDrop and DropEnter events are raised. However, when you close and reopen the solution, the <see cref="E:System.Windows.Forms.Control.DragEnter" /> and <see cref="E:System.Windows.Forms.Control.DragDrop" /> events are not raised again.</para></block><para>The following describes how and when events related to drag-and-drop operations are raised.</para><para>The <see cref="M:System.Windows.Forms.Control.DoDragDrop(System.Object,System.Windows.Forms.DragDropEffects)" /> method determines the control under the current cursor location. It then checks to see if the control is a valid drop target.</para><para>If the control is a valid drop target, the <see cref="E:System.Windows.Forms.Control.GiveFeedback" /> event is raised with the drag-and-drop effect specified. For a list of drag-and-drop effects, see the <see cref="T:System.Windows.Forms.DragDropEffects" /> enumeration.</para><para>Changes in the mouse cursor position, keyboard state, and mouse button state are tracked.</para><list type="bullet"><item><para>If the user moves out of a window, the <see cref="E:System.Windows.Forms.Control.DragLeave" /> event is raised.</para></item><item><para>If the mouse enters another control, the <see cref="E:System.Windows.Forms.Control.DragEnter" /> for that control is raised.</para></item><item><para>If the mouse moves but stays within the same control, the <see cref="E:System.Windows.Forms.Control.DragOver" /> event is raised.</para></item></list><para>If there is a change in the keyboard or mouse button state, the <see cref="E:System.Windows.Forms.Control.QueryContinueDrag" /> event is raised and determines whether to continue the drag, to drop the data, or to cancel the operation based on the value of the <see cref="P:System.Windows.Forms.QueryContinueDragEventArgs.Action" /> property of the event's <see cref="T:System.Windows.Forms.QueryContinueDragEventArgs" />.</para><list type="bullet"><item><para>If the value of <see cref="T:System.Windows.Forms.DragAction" /> is Continue, the <see cref="E:System.Windows.Forms.Control.DragOver" /> event is raised to continue the operation and the <see cref="E:System.Windows.Forms.Control.GiveFeedback" /> event is raised with the new effect so appropriate visual feedback can be set. For a list of valid drop effects, see the <see cref="T:System.Windows.Forms.DragDropEffects" /> enumeration.</para><block subset="none" type="note"><para>The <see cref="E:System.Windows.Forms.Control.DragOver" /> and <see cref="E:System.Windows.Forms.Control.GiveFeedback" /> events are paired so that as the mouse moves across the drop target, the user is given the most up-to-date feedback on the mouse's position.</para></block></item><item><para>If the value of <see cref="T:System.Windows.Forms.DragAction" /> is Drop, the drop effect value is returned to the source, so the source application can perform the appropriate operation on the source data; for example, cut the data if the operation was a move.</para></item><item><para>If the value of <see cref="T:System.Windows.Forms.DragAction" /> is Cancel, the <see cref="E:System.Windows.Forms.Control.DragLeave" /> event is raised.</para><block subset="none" type="note"><para>The <see cref="P:System.Windows.Forms.DragEventArgs.X" /> and <see cref="P:System.Windows.Forms.DragEventArgs.Y" /> properties of the <see cref="T:System.Windows.Forms.DragEventArgs" /> are in screen coordinates, not client coordinates. The following line of csprcs code converts the properties to a client <see cref="T:System.Drawing.Point" />. </para></block><code>Point clientPoint = targetControl.PointToClient(new Point(de.X, de.Y));</code></item></list><para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Occurs when an object is dragged into the control's bounds.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="DragLeave"><MemberSignature Language="C#" Value="public event EventHandler DragLeave;" /><MemberType>Event</MemberType><ReturnValue><ReturnType>System.EventHandler</ReturnType></ReturnValue><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The <see cref="E:System.Windows.Forms.Control.DragLeave" /> event is raised when the user drags the cursor out of the control or the user cancels the current drag-and-drop operation.</para><para>The following describes how and when events related to drag-and-drop operations are raised.</para><para>The <see cref="M:System.Windows.Forms.Control.DoDragDrop(System.Object,System.Windows.Forms.DragDropEffects)" /> method determines the control under the current cursor location. It then checks to see if the control is a valid drop target.</para><para>If the control is a valid drop target, the <see cref="E:System.Windows.Forms.Control.GiveFeedback" /> event is raised with the drag-and-drop effect specified. For a list of drag-and-drop effects, see the <see cref="T:System.Windows.Forms.DragDropEffects" /> enumeration.</para><para>Changes in the mouse cursor position, keyboard state, and mouse button state are tracked.</para><list type="bullet"><item><para>If the user moves out of a window, the <see cref="E:System.Windows.Forms.Control.DragLeave" /> event is raised.</para></item><item><para>If the mouse enters another control, the <see cref="E:System.Windows.Forms.Control.DragEnter" /> for that control is raised.</para></item><item><para>If the mouse moves but stays within the same control, the <see cref="E:System.Windows.Forms.Control.DragOver" /> event is raised.</para></item></list><para>If there is a change in the keyboard or mouse button state, the <see cref="E:System.Windows.Forms.Control.QueryContinueDrag" /> event is raised and determines whether to continue the drag, to drop the data, or to cancel the operation based on the value of the <see cref="P:System.Windows.Forms.QueryContinueDragEventArgs.Action" /> property of the event's <see cref="T:System.Windows.Forms.QueryContinueDragEventArgs" />.</para><list type="bullet"><item><para>If the value of <see cref="T:System.Windows.Forms.DragAction" /> is Continue, the <see cref="E:System.Windows.Forms.Control.DragOver" /> event is raised to continue the operation and the <see cref="E:System.Windows.Forms.Control.GiveFeedback" /> event is raised with the new effect so appropriate visual feedback can be set. For a list of valid drop effects, see the <see cref="T:System.Windows.Forms.DragDropEffects" /> enumeration. </para><block subset="none" type="note"><para>The <see cref="E:System.Windows.Forms.Control.DragOver" /> and <see cref="E:System.Windows.Forms.Control.GiveFeedback" /> events are paired so that as the mouse moves across the drop target, the user is given the most up-to-date feedback on the mouse's position.</para></block></item><item><para>If the value of <see cref="T:System.Windows.Forms.DragAction" /> is Drop, the drop effect value is returned to the source, so the source application can perform the appropriate operation on the source data; for example, cut the data if the operation was a move.</para></item><item><para>If the value of <see cref="T:System.Windows.Forms.DragAction" /> is Cancel, the <see cref="E:System.Windows.Forms.Control.DragLeave" /> event is raised.</para></item></list><para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Occurs when an object is dragged out of the control's bounds.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="DragOver"><MemberSignature Language="C#" Value="public event System.Windows.Forms.DragEventHandler DragOver;" /><MemberType>Event</MemberType><ReturnValue><ReturnType>System.Windows.Forms.DragEventHandler</ReturnType></ReturnValue><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The <see cref="E:System.Windows.Forms.Control.DragOver" /> event is raised when the mouse cursor moves within the bounds of the control during a drag-and-drop operation.</para><para>The following describes how and when events related to drag-and-drop operations are raised.</para><para>The <see cref="M:System.Windows.Forms.Control.DoDragDrop(System.Object,System.Windows.Forms.DragDropEffects)" /> method determines the control under the current cursor location. It then checks to see if the control is a valid drop target.</para><para>If the control is a valid drop target, the <see cref="E:System.Windows.Forms.Control.GiveFeedback" /> event is raised with the drag-and-drop effect specified. For a list of drag-and-drop effects, see the <see cref="T:System.Windows.Forms.DragDropEffects" /> enumeration.</para><para>Changes in the mouse cursor position, keyboard state, and mouse button state are tracked.</para><list type="bullet"><item><para>If the user moves out of a window, the <see cref="E:System.Windows.Forms.Control.DragLeave" /> event is raised.</para></item><item><para>If the mouse enters another control, the <see cref="E:System.Windows.Forms.Control.DragEnter" /> for that control is raised.</para></item><item><para>If the mouse moves but stays within the same control, the <see cref="E:System.Windows.Forms.Control.DragOver" /> event is raised.</para></item></list><para>If there is a change in the keyboard or mouse button state, the <see cref="E:System.Windows.Forms.Control.QueryContinueDrag" /> event is raised and determines whether to continue the drag, to drop the data, or to cancel the operation based on the value of the <see cref="P:System.Windows.Forms.QueryContinueDragEventArgs.Action" /> property of the event's <see cref="T:System.Windows.Forms.QueryContinueDragEventArgs" />.</para><list type="bullet"><item><para>If the value of <see cref="T:System.Windows.Forms.DragAction" /> value is Continue, the <see cref="E:System.Windows.Forms.Control.DragOver" /> event is raised to continue the operation and the <see cref="E:System.Windows.Forms.Control.GiveFeedback" /> event is raised with the new effect so appropriate visual feedback can be set. For a list of valid drop effects, see the <see cref="T:System.Windows.Forms.DragDropEffects" /> enumeration. </para><block subset="none" type="note"><para>The <see cref="E:System.Windows.Forms.Control.DragOver" /> and <see cref="E:System.Windows.Forms.Control.GiveFeedback" /> events are paired so that as the mouse moves across the drop target, the user is given the most up-to-date feedback on the mouse's position.</para></block></item><item><para>If the value of <see cref="T:System.Windows.Forms.DragAction" /> is Drop, the drop effect value is returned to the source, so the source application can perform the appropriate operation on the source data; for example, cut the data if the operation was a move.</para></item><item><para>If the value of <see cref="T:System.Windows.Forms.DragAction" /> is Cancel, the <see cref="E:System.Windows.Forms.Control.DragLeave" /> event is raised.</para><block subset="none" type="note"><para>The <see cref="P:System.Windows.Forms.DragEventArgs.X" /> and <see cref="P:System.Windows.Forms.DragEventArgs.Y" /> properties of the <see cref="T:System.Windows.Forms.DragEventArgs" /> are in screen coordinates, not client coordinates. The following line of C# code converts the properties to a client <see cref="T:System.Drawing.Point" />:</para><para>Point clientPoint = targetControl.PointToClient(new Point(de.X, de.Y)); </para></block></item></list><para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Occurs when an object is dragged over the control's bounds.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="DrawToBitmap"><MemberSignature Language="C#" Value="public void DrawToBitmap (System.Drawing.Bitmap bitmap, System.Drawing.Rectangle targetBounds);" /><MemberType>Method</MemberType><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="bitmap" Type="System.Drawing.Bitmap" /><Parameter Name="targetBounds" Type="System.Drawing.Rectangle" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The <see cref="M:System.Windows.Forms.Control.DrawToBitmap(System.Drawing.Bitmap,System.Drawing.Rectangle)" /> method is not supported for ActiveX controls. You can override the <see cref="M:System.Windows.Forms.Control.OnPrint(System.Windows.Forms.PaintEventArgs)" /> event and provide custom printing logic if required.</para><para>The <see cref="M:System.Windows.Forms.Control.DrawToBitmap(System.Drawing.Bitmap,System.Drawing.Rectangle)" /> method has the following limitations:</para><list type="bullet"><item><para>An <see cref="T:System.ArgumentException" /> might be thrown for large bitmaps. The maximum allowable size varies by machine.</para></item><item><para><see cref="M:System.Windows.Forms.Control.DrawToBitmap(System.Drawing.Bitmap,System.Drawing.Rectangle)" /> does not support the Ink controls for the Windows XP Tablet PC Edition 2005 operating system.</para></item><item><para><see cref="M:System.Windows.Forms.Control.DrawToBitmap(System.Drawing.Bitmap,System.Drawing.Rectangle)" /> does not draw a child <see cref="T:System.Windows.Forms.TextBox" /> if the <see cref="P:System.Windows.Forms.Control.Visible" /> property of the <see cref="T:System.Windows.Forms.TextBox" /> is set to false.</para></item><item><para>Controls inside containers are rendered in reverse order.</para></item><item><para><see cref="M:System.Windows.Forms.Control.DrawToBitmap(System.Drawing.Bitmap,System.Drawing.Rectangle)" /> is not fully functional for the <see cref="T:System.Windows.Forms.RichTextBox" />; only the border of a bitmap is drawn.</para></item></list></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Supports rendering to the specified bitmap.</para></summary><param name="bitmap"><attribution license="cc4" from="Microsoft" modified="false" />The bitmap to be drawn to.</param><param name="targetBounds"><attribution license="cc4" from="Microsoft" modified="false" />The bounds within which the control is rendered.</param></Docs></Member><Member MemberName="Enabled"><MemberSignature Language="C#" Value="public bool Enabled { set; get; }" /><MemberType>Property</MemberType><Attributes><Attribute><AttributeName>System.ComponentModel.Localizable(true)</AttributeName></Attribute><Attribute><AttributeName>System.Runtime.InteropServices.DispId(-514)</AttributeName></Attribute></Attributes><ReturnValue><ReturnType>System.Boolean</ReturnType></ReturnValue><Docs><value>To be added.</value><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>With the <see cref="P:System.Windows.Forms.Control.Enabled" /> property, you can enable or disable controls at run time. For example, you can disable controls that do not apply to the current state of the application. You can also disable a control to restrict its use. For example, a button can be disabled to prevent the user from clicking it. If a control is disabled, it cannot be selected.</para><block subset="none" type="note"><para>Setting the <see cref="P:System.Windows.Forms.Control.Enabled" /> property to false does not disable the application's control box or prevent the application window from receiving the focus.</para></block><para>When a container control has its enabled property set to false, all its contained controls are disabled, as well. For example, if the user clicks on any of the controls contained in a disabled <see cref="T:System.Windows.Forms.GroupBox" /> control, no events are raised.</para><block subset="none" type="note"><para>When a scrollable control is disabled, the scroll bars are also disabled. For example, a disabled multiline textbox is unable to scroll to display all the lines of text.</para></block></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets or sets a value indicating whether the control can respond to user interaction.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="EnabledChanged"><MemberSignature Language="C#" Value="public event EventHandler EnabledChanged;" /><MemberType>Event</MemberType><ReturnValue><ReturnType>System.EventHandler</ReturnType></ReturnValue><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>This event is raised if the <see cref="P:System.Windows.Forms.Control.Enabled" /> property is changed by either a programmatic modification or user interaction.</para><para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Occurs when the <see cref="P:System.Windows.Forms.Control.Enabled" /> property value has changed.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="EndInvoke"><MemberSignature Language="C#" Value="public object EndInvoke (IAsyncResult asyncResult);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Object</ReturnType></ReturnValue><Parameters><Parameter Name="asyncResult" Type="System.IAsyncResult" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>If the asynchronous operation has not been completed, this function will block until the result is available.</para><block subset="none" type="note"><para>In addition to the <see cref="P:System.Windows.Forms.Control.InvokeRequired" /> property, there are four methods on a control that are thread safe: <see cref="M:System.Windows.Forms.Control.Invoke(System.Delegate)" />, <see cref="M:System.Windows.Forms.Control.BeginInvoke(System.Delegate)" />, <see cref="M:System.Windows.Forms.Control.EndInvoke(System.IAsyncResult)" />, and <see cref="M:System.Windows.Forms.Control.CreateGraphics" /> if the handle for the control has already been created. Calling <see cref="M:System.Windows.Forms.Control.CreateGraphics" /> before the control's handle has been created on a background thread can cause illegal cross thread calls. For all other method calls, you should use one of the invoke methods to marshal the call to the control's thread.</para></block></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Retrieves the return value of the asynchronous operation represented by the <see cref="T:System.IAsyncResult" /> passed.</para></summary><returns><attribution license="cc4" from="Microsoft" modified="false" /><para>The <see cref="T:System.Object" /> generated by the asynchronous operation.</para></returns><param name="asyncResult"><attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.IAsyncResult" /> that represents a specific invoke asynchronous operation, returned when calling <see cref="M:System.Windows.Forms.Control.BeginInvoke(System.Delegate)" />. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes></Member><Member MemberName="Enter"><MemberSignature Language="C#" Value="public event EventHandler Enter;" /><MemberType>Event</MemberType><ReturnValue><ReturnType>System.EventHandler</ReturnType></ReturnValue><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>When you change the focus by using the keyboard (TAB, SHIFT+TAB, and so on), by calling the <see cref="M:System.Windows.Forms.Control.Select" /> or <see cref="M:System.Windows.Forms.Control.SelectNextControl(System.Windows.Forms.Control,System.Boolean,System.Boolean,System.Boolean,System.Boolean)" /> methods, or by setting the <see cref="P:System.Windows.Forms.ContainerControl.ActiveControl" /> property to the current form, focus events occur in the following order: </para><list type="ordered"><item><para><see cref="E:System.Windows.Forms.Control.Enter" /></para></item><item><para><see cref="E:System.Windows.Forms.Control.GotFocus" /></para></item><item><para><see cref="E:System.Windows.Forms.Control.Leave" /></para></item><item><para><see cref="E:System.Windows.Forms.Control.Validating" /></para></item><item><para><see cref="E:System.Windows.Forms.Control.Validated" /></para></item><item><para><see cref="E:System.Windows.Forms.Control.LostFocus" /></para></item></list><para>When you change the focus by using the mouse or by calling the <see cref="M:System.Windows.Forms.Control.Focus" /> method, focus events occur in the following order: </para><list type="ordered"><item><para><see cref="E:System.Windows.Forms.Control.Enter" /></para></item><item><para><see cref="E:System.Windows.Forms.Control.GotFocus" /></para></item><item><para><see cref="E:System.Windows.Forms.Control.LostFocus" /></para></item><item><para><see cref="E:System.Windows.Forms.Control.Leave" /></para></item><item><para><see cref="E:System.Windows.Forms.Control.Validating" /></para></item><item><para><see cref="E:System.Windows.Forms.Control.Validated" /></para></item></list><para>If the <see cref="P:System.Windows.Forms.Control.CausesValidation" /> property is set to false, the <see cref="E:System.Windows.Forms.Control.Validating" /> and <see cref="E:System.Windows.Forms.Control.Validated" /> events are suppressed.</para><block subset="none" type="note"><para>The <see cref="E:System.Windows.Forms.Control.Enter" /> and <see cref="E:System.Windows.Forms.Control.Leave" /> events are suppressed by the <see cref="T:System.Windows.Forms.Form" /> class. The equivalent events in the <see cref="T:System.Windows.Forms.Form" /> class are the <see cref="E:System.Windows.Forms.Form.Activated" /> and <see cref="E:System.Windows.Forms.Form.Deactivate" /> events. The <see cref="E:System.Windows.Forms.Control.Enter" /> and <see cref="E:System.Windows.Forms.Control.Leave" /> events are hierarchical and will cascade up and down the parent chain until the appropriate control is reached. For example, assume you have a <see cref="T:System.Windows.Forms.Form" /> with two <see cref="T:System.Windows.Forms.GroupBox" /> controls, and each <see cref="T:System.Windows.Forms.GroupBox" /> control has one <see cref="T:System.Windows.Forms.TextBox" /> control. When the caret is moved from one <see cref="T:System.Windows.Forms.TextBox" /> to the other, the <see cref="E:System.Windows.Forms.Control.Leave" /> event is raised for the <see cref="T:System.Windows.Forms.TextBox" /> and <see cref="T:System.Windows.Forms.GroupBox" />, and the <see cref="E:System.Windows.Forms.Control.Enter" /> event is raised for the other <see cref="T:System.Windows.Forms.GroupBox" /> and <see cref="T:System.Windows.Forms.TextBox" />.</para></block><block subset="none" type="note"><para>Do not attempt to set focus from within the <see cref="E:System.Windows.Forms.Control.Enter" />, <see cref="E:System.Windows.Forms.Control.GotFocus" />, <see cref="E:System.Windows.Forms.Control.Leave" />, <see cref="E:System.Windows.Forms.Control.LostFocus" />, <see cref="E:System.Windows.Forms.Control.Validating" />, or <see cref="E:System.Windows.Forms.Control.Validated" /> event handlers. Doing so can cause your application or the operating system to stop responding. For more information, see the WM_KILLFOCUS topic in the "Keyboard Input Reference" section, and the "Message Deadlocks" section of the "About Messages and Message Queues" topic in the MSDN library at http://msdn.microsoft.com/library.</para></block><para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Occurs when the control is entered.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="FindForm"><MemberSignature Language="C#" Value="public System.Windows.Forms.Form FindForm ();" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Windows.Forms.Form</ReturnType></ReturnValue><Parameters /><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The control's <see cref="P:System.Windows.Forms.Control.Parent" /> property value might not be the same as the <see cref="T:System.Windows.Forms.Form" /> returned by <see cref="M:System.Windows.Forms.Control.FindForm" /> method. For example, if a <see cref="T:System.Windows.Forms.RadioButton" /> control is contained within a <see cref="T:System.Windows.Forms.GroupBox" /> control, and the <see cref="T:System.Windows.Forms.GroupBox" /> is on a <see cref="T:System.Windows.Forms.Form" />, the <see cref="T:System.Windows.Forms.RadioButton" /> control's <see cref="P:System.Windows.Forms.Control.Parent" /> is the <see cref="T:System.Windows.Forms.GroupBox" /> and the <see cref="T:System.Windows.Forms.GroupBox" /> control's <see cref="P:System.Windows.Forms.Control.Parent" /> is the <see cref="T:System.Windows.Forms.Form" />.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Retrieves the form that the control is on.</para></summary><returns><attribution license="cc4" from="Microsoft" modified="false" /><para>The <see cref="T:System.Windows.Forms.Form" /> that the control is on.</para></returns></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="Focus"><MemberSignature Language="C#" Value="public bool Focus ();" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Boolean</ReturnType></ReturnValue><Parameters /><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The <see cref="M:System.Windows.Forms.Control.Focus" /> method returns true if the control successfully received input focus. The control can have the input focus while not displaying any visual cues of having the focus. This behavior is primarily observed by the nonselectable controls listed below, or any controls derived from them.</para><para>A control can be selected and receive input focus if all the following are true: the Selectable value of <see cref="T:System.Windows.Forms.ControlStyles" /> is set to true, it is contained in another control, and all its parent controls are both visible and enabled.</para><para>The Windows Forms controls in the following list are not selectable. Controls derived from these controls are also not selectable.</para><list type="bullet"><item><para><see cref="T:System.Windows.Forms.Panel" /></para></item><item><para><see cref="T:System.Windows.Forms.GroupBox" /></para></item><item><para><see cref="T:System.Windows.Forms.PictureBox" /></para></item><item><para><see cref="T:System.Windows.Forms.ProgressBar" /></para></item><item><para><see cref="T:System.Windows.Forms.Splitter" /></para></item><item><para><see cref="T:System.Windows.Forms.Label" /></para></item><item><para><see cref="T:System.Windows.Forms.LinkLabel" /> (when there is no link present in the control) </para></item></list><block subset="none" type="note"><para><see cref="M:System.Windows.Forms.Control.Focus" /> is a low-level method intended primarily for custom control authors. Instead, application programmers should use the <see cref="M:System.Windows.Forms.Control.Select" /> method or the <see cref="P:System.Windows.Forms.ContainerControl.ActiveControl" /> property for child controls, or the <see cref="M:System.Windows.Forms.Form.Activate" /> method for forms.</para></block></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Sets input focus to the control.</para></summary><returns><attribution license="cc4" from="Microsoft" modified="false" /><para>true if the input focus request was successful; otherwise, false.</para></returns></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes></Member><Member MemberName="Focused"><MemberSignature Language="C#" Value="public virtual bool Focused { get; }" /><MemberType>Property</MemberType><Attributes><Attribute><AttributeName>System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Hidden)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.Browsable(false)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes><ReturnValue><ReturnType>System.Boolean</ReturnType></ReturnValue><Docs><value>To be added.</value><remarks>To be added.</remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets a value indicating whether the control has input focus.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="Font"><MemberSignature Language="C#" Value="public virtual System.Drawing.Font Font { set; get; }" /><MemberType>Property</MemberType><Attributes><Attribute><AttributeName>System.ComponentModel.Localizable(true)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.AmbientValue(null)</AttributeName></Attribute><Attribute><AttributeName>System.Runtime.InteropServices.DispId(-512)</AttributeName></Attribute></Attributes><ReturnValue><ReturnType>System.Drawing.Font</ReturnType></ReturnValue><Docs><value>To be added.</value><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The <see cref="P:System.Windows.Forms.Control.Font" /> property is an ambient property. An ambient property is a control property that, if not set, is retrieved from the parent control. For example, a <see cref="T:System.Windows.Forms.Button" /> will have the same <see cref="P:System.Windows.Forms.Control.BackColor" /> as its parent <see cref="T:System.Windows.Forms.Form" /> by default. For more information about ambient properties, see the <see cref="T:System.Windows.Forms.AmbientProperties" /> class or the <see cref="T:System.Windows.Forms.Control" /> class overview.</para><para>Because the <see cref="T:System.Drawing.Font" /> is immutable (meaning that you cannot adjust any of its properties), you can only assign the <see cref="P:System.Windows.Forms.Control.Font" /> property a new <see cref="T:System.Drawing.Font" />. However, you can base the new font on the existing font.</para><para>[Visual Basic, C#]</para><para>The following is an example of how to adjust the existing font to make it bold: </para><code>myControl.Font = new Font(myControl.Font, 
    myControl.Font.Style | FontStyle.Bold);</code><code>MyControl.Font = New Font(MyControl.Font, _ 
    MyControl.Font.Style Or FontStyle.Bold)</code></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets or sets the font of the text displayed by the control.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="FontChanged"><MemberSignature Language="C#" Value="public event EventHandler FontChanged;" /><MemberType>Event</MemberType><ReturnValue><ReturnType>System.EventHandler</ReturnType></ReturnValue><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>This event is raised if the <see cref="P:System.Windows.Forms.Control.Font" /> property is changed by either a programmatic modification or through interaction.</para><para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Occurs when the <see cref="P:System.Windows.Forms.Control.Font" /> property value changes.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="FontHeight"><MemberSignature Language="C#" Value="protected int FontHeight { set; get; }" /><MemberType>Property</MemberType><ReturnValue><ReturnType>System.Int32</ReturnType></ReturnValue><Docs><value>To be added.</value><remarks><attribution license="cc4" from="Microsoft" modified="false" /><block subset="none" type="note"><para>The <see cref="P:System.Windows.Forms.Control.FontHeight" /> property should not be set to any value other than the control's <see cref="P:System.Drawing.Font.Height" /> value, or -1. Setting <see cref="P:System.Windows.Forms.Control.FontHeight" /> to -1 has the effect of clearing the cached height value, and the value is recalculated the next time the property is referenced.</para></block></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets or sets the height of the font of the control.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="ForeColor"><MemberSignature Language="C#" Value="public virtual System.Drawing.Color ForeColor { set; get; }" /><MemberType>Property</MemberType><Attributes><Attribute><AttributeName>System.Runtime.InteropServices.DispId(-513)</AttributeName></Attribute></Attributes><ReturnValue><ReturnType>System.Drawing.Color</ReturnType></ReturnValue><Docs><value>To be added.</value><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The <see cref="P:System.Windows.Forms.Control.ForeColor" /> property is an ambient property. An ambient property is a control property that, if not set, is retrieved from the parent control. For example, a <see cref="T:System.Windows.Forms.Button" /> will have the same <see cref="P:System.Windows.Forms.Control.BackColor" /> as its parent <see cref="T:System.Windows.Forms.Form" /> by default. For more information about ambient properties, see the <see cref="T:System.Windows.Forms.AmbientProperties" /> class or the <see cref="T:System.Windows.Forms.Control" /> class overview.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets or sets the foreground color of the control.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="ForeColorChanged"><MemberSignature Language="C#" Value="public event EventHandler ForeColorChanged;" /><MemberType>Event</MemberType><ReturnValue><ReturnType>System.EventHandler</ReturnType></ReturnValue><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>This event is raised if the <see cref="P:System.Windows.Forms.Control.ForeColor" /> property is changed by either a programmatic modification or through interaction.</para><para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Occurs when the <see cref="P:System.Windows.Forms.Control.ForeColor" /> property value changes.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="FromChildHandle"><MemberSignature Language="C#" Value="public static System.Windows.Forms.Control FromChildHandle (IntPtr handle);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Windows.Forms.Control</ReturnType></ReturnValue><Parameters><Parameter Name="handle" Type="System.IntPtr" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>This method searches up the window handle parent chain until it finds a handle that is associated with a control. This method is more reliable than the <see cref="M:System.Windows.Forms.Control.FromHandle(System.IntPtr)" /> method, because it correctly returns controls that own more than one handle.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Retrieves the control that contains the specified handle.</para></summary><returns><attribution license="cc4" from="Microsoft" modified="false" /><para>The <see cref="T:System.Windows.Forms.Control" /> that represents the control associated with the specified handle; returns null if no control with the specified handle is found.</para></returns><param name="handle"><attribution license="cc4" from="Microsoft" modified="false" />The window handle (HWND) to search for. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes></Member><Member MemberName="FromHandle"><MemberSignature Language="C#" Value="public static System.Windows.Forms.Control FromHandle (IntPtr handle);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Windows.Forms.Control</ReturnType></ReturnValue><Parameters><Parameter Name="handle" Type="System.IntPtr" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Use the <see cref="M:System.Windows.Forms.Control.FromChildHandle(System.IntPtr)" /> method if you need to return controls that own more than one handle.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Returns the control that is currently associated with the specified handle.</para></summary><returns><attribution license="cc4" from="Microsoft" modified="false" /><para>A <see cref="T:System.Windows.Forms.Control" /> that represents the control associated with the specified handle; returns null if no control with the specified handle is found.</para></returns><param name="handle"><attribution license="cc4" from="Microsoft" modified="false" />The window handle (HWND) to search for. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes></Member><Member MemberName="GetAccessibilityObjectById"><MemberSignature Language="C#" Value="protected virtual System.Windows.Forms.AccessibleObject GetAccessibilityObjectById (int objectId);" /><MemberType>Method</MemberType><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Windows.Forms.AccessibleObject</ReturnType></ReturnValue><Parameters><Parameter Name="objectId" Type="System.Int32" /></Parameters><Docs><remarks>To be added.</remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Retrieves the specified <see cref="T:System.Windows.Forms.AccessibleObject" />.</para></summary><returns><attribution license="cc4" from="Microsoft" modified="false" /><para>The specified <see cref="T:System.Windows.Forms.AccessibleObject" />.</para></returns><param name="objectId"><attribution license="cc4" from="Microsoft" modified="false" />An Int32 that identifies the <see cref="T:System.Windows.Forms.AccessibleObject" /> to retrieve.</param></Docs></Member><Member MemberName="GetAutoSizeMode"><MemberSignature Language="C#" Value="protected System.Windows.Forms.AutoSizeMode GetAutoSizeMode ();" /><MemberType>Method</MemberType><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Windows.Forms.AutoSizeMode</ReturnType></ReturnValue><Parameters /><Docs><remarks>To be added.</remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Retrieves a value indicating how a control will behave when its <see cref="P:System.Windows.Forms.Control.AutoSize" /> property is enabled.</para></summary><returns><attribution license="cc4" from="Microsoft" modified="false" /><para>One of the <see cref="T:System.Windows.Forms.AutoSizeMode" /> values. </para></returns></Docs></Member><Member MemberName="GetChildAtPoint"><MemberSignature Language="C#" Value="public System.Windows.Forms.Control GetChildAtPoint (System.Drawing.Point pt);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Windows.Forms.Control</ReturnType></ReturnValue><Parameters><Parameter Name="pt" Type="System.Drawing.Point" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>If there is no child control at the specified point, the <see cref="M:System.Windows.Forms.Control.GetChildAtPoint(System.Drawing.Point)" /> method returns null.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Retrieves the child control that is located at the specified coordinates.</para></summary><returns><attribution license="cc4" from="Microsoft" modified="false" /><para>A <see cref="T:System.Windows.Forms.Control" /> that represents the control that is located at the specified point.</para></returns><param name="pt"><attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Drawing.Point" /> that contains the coordinates where you want to look for a control. Coordinates are expressed relative to the upper-left corner of the control's client area. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="GetChildAtPoint"><MemberSignature Language="C#" Value="public System.Windows.Forms.Control GetChildAtPoint (System.Drawing.Point pt, System.Windows.Forms.GetChildAtPointSkip skipValue);" /><MemberType>Method</MemberType><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Windows.Forms.Control</ReturnType></ReturnValue><Parameters><Parameter Name="pt" Type="System.Drawing.Point" /><Parameter Name="skipValue" Type="System.Windows.Forms.GetChildAtPointSkip" /></Parameters><Docs><remarks>To be added.</remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Retrieves the child control that is located at the specified coordinates, specifying whether to ignore child controls of a certain type.</para></summary><returns><attribution license="cc4" from="Microsoft" modified="false" /><para>The child <see cref="T:System.Windows.Forms.Control" /> at the specified coordinates.</para></returns><param name="pt"><attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Drawing.Point" /> that contains the coordinates where you want to look for a control. Coordinates are expressed relative to the upper-left corner of the control's client area.</param><param name="skipValue"><attribution license="cc4" from="Microsoft" modified="false" />One of the values of <see cref="T:System.Windows.Forms.GetChildAtPointSkip" />, determining whether to ignore child controls of a certain type.</param></Docs></Member><Member MemberName="GetContainerControl"><MemberSignature Language="C#" Value="public System.Windows.Forms.IContainerControl GetContainerControl ();" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Windows.Forms.IContainerControl</ReturnType></ReturnValue><Parameters /><Docs><remarks>To be added.</remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Returns the next <see cref="T:System.Windows.Forms.ContainerControl" /> up the control's chain of parent controls.</para></summary><returns><attribution license="cc4" from="Microsoft" modified="false" /><para>An <see cref="T:System.Windows.Forms.IContainerControl" />, that represents the parent of the <see cref="T:System.Windows.Forms.Control" />.</para></returns></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="GetNextControl"><MemberSignature Language="C#" Value="public System.Windows.Forms.Control GetNextControl (System.Windows.Forms.Control ctl, bool forward);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Windows.Forms.Control</ReturnType></ReturnValue><Parameters><Parameter Name="ctl" Type="System.Windows.Forms.Control" /><Parameter Name="forward" Type="System.Boolean" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The <see cref="M:System.Windows.Forms.Control.GetNextControl(System.Windows.Forms.Control,System.Boolean)" /> method is dependent on tab order. To iterate through all controls of a form, including nested controls, use the <see cref="P:System.Windows.Forms.Control.Controls" /> property. To get or set the active control of a container control, use the <see cref="P:System.Windows.Forms.ContainerControl.ActiveControl" /> property.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Retrieves the next control forward or back in the tab order of child controls.</para></summary><returns><attribution license="cc4" from="Microsoft" modified="false" /><para>The next <see cref="T:System.Windows.Forms.Control" /> in the tab order.</para></returns><param name="ctl"><attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Windows.Forms.Control" /> to start the search with. </param><param name="forward"><attribution license="cc4" from="Microsoft" modified="false" />true to search forward in the tab order; false to search backward. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="GetPreferredSize"><MemberSignature Language="C#" Value="public virtual System.Drawing.Size GetPreferredSize (System.Drawing.Size proposedSize);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Drawing.Size</ReturnType></ReturnValue><Parameters><Parameter Name="proposedSize" Type="System.Drawing.Size" /></Parameters><Docs><since version=".NET 2.0" /><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The behavior of <see cref="M:System.Windows.Forms.Control.GetPreferredSize(System.Drawing.Size)" /> differs by control. The <see cref="P:System.Windows.Forms.Control.LayoutEngine" /> might be unable to assign the returned size to the control. You can return a size larger than the constraints indicated in the <paramref name="proposedSize" /> parameter, but <paramref name="proposedSize" /> should decrease as the constraint decreases. For example, GetPreferredSize(new Size(100, 0)) should not be wider than GetPreferredSize(new Size(200, 0)). The exception is a <paramref name="proposedSize" /> of 0 or Size.Empty, which are defined as unconstrained.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Retrieves the size of a rectangular area into which a control can be fitted.</para></summary><returns><attribution license="cc4" from="Microsoft" modified="false" /><para>An ordered pair of type <see cref="T:System.Drawing.Size" /> representing the width and height of a rectangle.</para></returns><param name="proposedSize"><attribution license="cc4" from="Microsoft" modified="false" />The custom-sized area for a control. </param></Docs><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes></Member><Member MemberName="GetScaledBounds"><MemberSignature Language="C#" Value="protected virtual System.Drawing.Rectangle GetScaledBounds (System.Drawing.Rectangle bounds, System.Drawing.SizeF factor, System.Windows.Forms.BoundsSpecified specified);" /><MemberType>Method</MemberType><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes><ReturnValue><ReturnType>System.Drawing.Rectangle</ReturnType></ReturnValue><Parameters><Parameter Name="bounds" Type="System.Drawing.Rectangle" /><Parameter Name="factor" Type="System.Drawing.SizeF" /><Parameter Name="specified" Type="System.Windows.Forms.BoundsSpecified" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>This is a helper method that is called by <see cref="M:System.Windows.Forms.Control.ScaleControl(System.Drawing.SizeF,System.Windows.Forms.BoundsSpecified)" /> to retrieve the bounds within which the control is scaled. You can override this method to reuse the <see cref="M:System.Windows.Forms.Control.ScaleControl(System.Drawing.SizeF,System.Windows.Forms.BoundsSpecified)" /> scaling logic, but you must supply your own bounds. The default implementation returns scaled bounds that take into account the <paramref name="specified" /> bounds, whether the control is top level, whether the control is fixed width or auto size, and any adornments the control might have. </para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Retrieves the bounds within which the control is scaled.</para></summary><returns><attribution license="cc4" from="Microsoft" modified="false" /><para>A <see cref="T:System.Drawing.Rectangle" /> representing the bounds within which the control is scaled.</para></returns><param name="bounds"><attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Drawing.Rectangle" /> that specifies the area for which to retrieve the display bounds.</param><param name="factor"><attribution license="cc4" from="Microsoft" modified="false" />The height and width of the control's bounds.</param><param name="specified"><attribution license="cc4" from="Microsoft" modified="false" />One of the values of <see cref="T:System.Windows.Forms.BoundsSpecified" /> that specifies the bounds of the control to use when defining its size and position.</param></Docs></Member><Member MemberName="GetStyle"><MemberSignature Language="C#" Value="protected bool GetStyle (System.Windows.Forms.ControlStyles flag);" /><MemberType>Method</MemberType><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Boolean</ReturnType></ReturnValue><Parameters><Parameter Name="flag" Type="System.Windows.Forms.ControlStyles" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Control style bit flags are used to categorize supported behavior. A control can enable a style by calling the <see cref="M:System.Windows.Forms.Control.SetStyle(System.Windows.Forms.ControlStyles,System.Boolean)" /> method and passing in the appropriate <see cref="T:System.Windows.Forms.ControlStyles" /> bit and the Boolean value to set the bit to. To determine the value assigned to a specified <see cref="T:System.Windows.Forms.ControlStyles" /> bit, use the <see cref="M:System.Windows.Forms.Control.GetStyle(System.Windows.Forms.ControlStyles)" /> method and pass in the <see cref="T:System.Windows.Forms.ControlStyles" /> member to evaluate.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Retrieves the value of the specified control style bit for the control.</para></summary><returns><attribution license="cc4" from="Microsoft" modified="false" /><para>true if the specified control style bit is set to true; otherwise, false.</para></returns><param name="flag"><attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Windows.Forms.ControlStyles" /> bit to return the value from. </param></Docs></Member><Member MemberName="GetTopLevel"><MemberSignature Language="C#" Value="protected bool GetTopLevel ();" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Boolean</ReturnType></ReturnValue><Parameters /><Docs><remarks>To be added.</remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Determines if the control is a top-level control.</para></summary><returns><attribution license="cc4" from="Microsoft" modified="false" /><para>true if the control is a top-level control; otherwise, false.</para></returns></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="GiveFeedback"><MemberSignature Language="C#" Value="public event System.Windows.Forms.GiveFeedbackEventHandler GiveFeedback;" /><MemberType>Event</MemberType><ReturnValue><ReturnType>System.Windows.Forms.GiveFeedbackEventHandler</ReturnType></ReturnValue><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The <see cref="E:System.Windows.Forms.Control.GiveFeedback" /> event is raised when a drag-and-drop operation is started. With the <see cref="E:System.Windows.Forms.Control.GiveFeedback" /> event, the source of a drag event can modify the appearance of the mouse pointer in order to give the user visual feedback during a drag-and-drop operation.</para><para>The following describes how and when events related to drag-and-drop operations are raised.</para><para>The <see cref="M:System.Windows.Forms.Control.DoDragDrop(System.Object,System.Windows.Forms.DragDropEffects)" /> method determines the control under the current cursor location. It then checks to see if the control is a valid drop target.</para><para>If the control is a valid drop target, the <see cref="E:System.Windows.Forms.Control.GiveFeedback" /> event is raised with the drag-and-drop effect specified. For a list of drag-and-drop effects, see the <see cref="T:System.Windows.Forms.DragDropEffects" /> enumeration.</para><para>Changes in the mouse cursor position, keyboard state, and mouse button state are tracked.</para><list type="bullet"><item><para>If the user moves out of a window, the <see cref="E:System.Windows.Forms.Control.DragLeave" /> event is raised.</para></item><item><para>If the mouse enters another control, the <see cref="E:System.Windows.Forms.Control.DragEnter" /> for that control is raised.</para></item><item><para>If the mouse moves but stays within the same control, the <see cref="E:System.Windows.Forms.Control.DragOver" /> event is raised.</para></item></list><para>If there is a change in the keyboard or mouse button state, the <see cref="E:System.Windows.Forms.Control.QueryContinueDrag" /> event is raised and determines whether to continue the drag, to drop the data, or to cancel the operation based on the value of the <see cref="P:System.Windows.Forms.QueryContinueDragEventArgs.Action" /> property of the event's <see cref="T:System.Windows.Forms.QueryContinueDragEventArgs" />.</para><list type="bullet"><item><para>If the value of <see cref="T:System.Windows.Forms.DragAction" /> is Continue, the <see cref="E:System.Windows.Forms.Control.DragOver" /> event is raised to continue the operation and the <see cref="E:System.Windows.Forms.Control.GiveFeedback" /> event is raised with the new effect so appropriate visual feedback can be set. For a list of valid drop effects, see the <see cref="T:System.Windows.Forms.DragDropEffects" /> enumeration.</para><block subset="none" type="note"><para>The <see cref="E:System.Windows.Forms.Control.DragOver" /> and <see cref="E:System.Windows.Forms.Control.GiveFeedback" /> events are paired so that as the mouse moves across the drop target, the user is given the most up-to-date feedback on the mouse's position.</para></block></item><item><para>If the value of <see cref="T:System.Windows.Forms.DragAction" /> is Drop, the drop effect value is returned to the source, so the source application can perform the appropriate operation on the source data; for example, cut the data if the operation was a move.</para></item><item><para>If the value of <see cref="T:System.Windows.Forms.DragAction" /> is Cancel, the <see cref="E:System.Windows.Forms.Control.DragLeave" /> event is raised.</para></item></list><para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Occurs during a drag operation.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="GotFocus"><MemberSignature Language="C#" Value="public event EventHandler GotFocus;" /><MemberType>Event</MemberType><Attributes><Attribute><AttributeName>System.ComponentModel.Browsable(false)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes><ReturnValue><ReturnType>System.EventHandler</ReturnType></ReturnValue><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>When you change the focus by using the keyboard (TAB, SHIFT+TAB, and so on), by calling the <see cref="M:System.Windows.Forms.Control.Select" /> or <see cref="M:System.Windows.Forms.Control.SelectNextControl(System.Windows.Forms.Control,System.Boolean,System.Boolean,System.Boolean,System.Boolean)" /> methods, or by setting the <see cref="P:System.Windows.Forms.ContainerControl.ActiveControl" /> property to the current form, focus events occur in the following order: </para><list type="ordered"><item><para><see cref="E:System.Windows.Forms.Control.Enter" /></para></item><item><para><see cref="E:System.Windows.Forms.Control.GotFocus" /></para></item><item><para><see cref="E:System.Windows.Forms.Control.Leave" /></para></item><item><para><see cref="E:System.Windows.Forms.Control.Validating" /></para></item><item><para><see cref="E:System.Windows.Forms.Control.Validated" /></para></item><item><para><see cref="E:System.Windows.Forms.Control.LostFocus" /></para></item></list><para>When you change the focus by using the mouse or by calling the <see cref="M:System.Windows.Forms.Control.Focus" /> method, focus events occur in the following order: </para><list type="ordered"><item><para><see cref="E:System.Windows.Forms.Control.Enter" /></para></item><item><para><see cref="E:System.Windows.Forms.Control.GotFocus" /></para></item><item><para><see cref="E:System.Windows.Forms.Control.LostFocus" /></para></item><item><para><see cref="E:System.Windows.Forms.Control.Leave" /></para></item><item><para><see cref="E:System.Windows.Forms.Control.Validating" /></para></item><item><para><see cref="E:System.Windows.Forms.Control.Validated" /></para></item></list><para>If the <see cref="P:System.Windows.Forms.Control.CausesValidation" /> property is set to false, the <see cref="E:System.Windows.Forms.Control.Validating" /> and <see cref="E:System.Windows.Forms.Control.Validated" /> events are suppressed.</para><para>Note   The <see cref="E:System.Windows.Forms.Control.GotFocus" /> and <see cref="E:System.Windows.Forms.Control.LostFocus" /> events are low-level focus events that are tied to the WM_KILLFOCUS and WM_SETFOCUS Windows messages. Typically, the <see cref="E:System.Windows.Forms.Control.GotFocus" /> and <see cref="E:System.Windows.Forms.Control.LostFocus" /> events are only used when updating <see cref="T:System.Windows.Forms.UICues" /> or when writing custom controls. Instead the <see cref="E:System.Windows.Forms.Control.Enter" /> and <see cref="E:System.Windows.Forms.Control.Leave" /> events should be used for all controls except the <see cref="T:System.Windows.Forms.Form" /> class, which uses the <see cref="E:System.Windows.Forms.Form.Activated" /> and <see cref="E:System.Windows.Forms.Form.Deactivate" /> events. For more information about the <see cref="E:System.Windows.Forms.Control.GotFocus" /> and <see cref="E:System.Windows.Forms.Control.LostFocus" /> events, see the WM_SETFOCUS and WM_KILLFOCUS topics in the "Keyboard Input Reference" section in the MSDN library at http://msdn.microsoft.com/library.</para><block subset="none" type="note"><para>Do not attempt to set focus from within the <see cref="E:System.Windows.Forms.Control.Enter" />, <see cref="E:System.Windows.Forms.Control.GotFocus" />, <see cref="E:System.Windows.Forms.Control.Leave" />, <see cref="E:System.Windows.Forms.Control.LostFocus" />, <see cref="E:System.Windows.Forms.Control.Validating" />, or <see cref="E:System.Windows.Forms.Control.Validated" /> event handlers. Doing so can cause your application or the operating system to stop responding. For more information, see the WM_KILLFOCUS topic in the "Keyboard Input Reference" section, and the "Message Deadlocks" section of the "About Messages and Message Queues" topic in the MSDN library at http://msdn.microsoft.com/library.</para></block><para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Occurs when the control receives focus.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="Handle"><MemberSignature Language="C#" Value="public IntPtr Handle { get; }" /><MemberType>Property</MemberType><Attributes><Attribute><AttributeName>System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Hidden)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.Browsable(false)</AttributeName></Attribute><Attribute><AttributeName>System.Runtime.InteropServices.DispId(-515)</AttributeName></Attribute></Attributes><ReturnValue><ReturnType>System.IntPtr</ReturnType></ReturnValue><Docs><value>To be added.</value><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The value of the <see cref="P:System.Windows.Forms.Control.Handle" /> property is a Windows HWND. If the handle has not yet been created, referencing this property will force the handle to be created.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets the window handle that the control is bound to.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="HandleCreated"><MemberSignature Language="C#" Value="public event EventHandler HandleCreated;" /><MemberType>Event</MemberType><Attributes><Attribute><AttributeName>System.ComponentModel.Browsable(false)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes><ReturnValue><ReturnType>System.EventHandler</ReturnType></ReturnValue><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>A handle is created when the <see cref="T:System.Windows.Forms.Control" /> is displayed for the first time. For example, if a <see cref="T:System.Windows.Forms.Control" /> is created that has <see cref="P:System.Windows.Forms.Control.Visible" /> set to false, the <see cref="E:System.Windows.Forms.Control.HandleCreated" /> event will not be raised until <see cref="P:System.Windows.Forms.Control.Visible" /> is set to true.</para><para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Occurs when a handle is created for the control.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="HandleDestroyed"><MemberSignature Language="C#" Value="public event EventHandler HandleDestroyed;" /><MemberType>Event</MemberType><Attributes><Attribute><AttributeName>System.ComponentModel.Browsable(false)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes><ReturnValue><ReturnType>System.EventHandler</ReturnType></ReturnValue><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>During the <see cref="E:System.Windows.Forms.Control.HandleDestroyed" /> event, the control is still a valid Windows control and the <see cref="P:System.Windows.Forms.Control.Handle" /> can be recreated by calling the <see cref="M:System.Windows.Forms.Control.RecreateHandle" /> method.</para><para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Occurs when the control's handle is in the process of being destroyed.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="HasChildren"><MemberSignature Language="C#" Value="public bool HasChildren { get; }" /><MemberType>Property</MemberType><Attributes><Attribute><AttributeName>System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Hidden)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.Browsable(false)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes><ReturnValue><ReturnType>System.Boolean</ReturnType></ReturnValue><Docs><value>To be added.</value><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>If the <see cref="P:System.Windows.Forms.Control.Controls" /> collection has a <see cref="P:System.Windows.Forms.Layout.ArrangedElementCollection.Count" /> greater than zero, the <see cref="P:System.Windows.Forms.Control.HasChildren" /> property will return true. Accessing the <see cref="P:System.Windows.Forms.Control.HasChildren" /> property does not force the creation of a <see cref="T:System.Windows.Forms.Control.ControlCollection" /> if the control has no children, so referencing this property can provide a performance benefit when walking a tree of controls.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets a value indicating whether the control contains one or more child controls.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="Height"><MemberSignature Language="C#" Value="public int Height { set; get; }" /><MemberType>Property</MemberType><Attributes><Attribute><AttributeName>System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Hidden)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.Browsable(false)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Always)</AttributeName></Attribute></Attributes><ReturnValue><ReturnType>System.Int32</ReturnType></ReturnValue><Docs><value>To be added.</value><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Changes made to the <see cref="P:System.Windows.Forms.Control.Height" /> and <see cref="P:System.Windows.Forms.Control.Top" /> property values cause the <see cref="P:System.Windows.Forms.Control.Bottom" /> property value of the control to change.</para><block subset="none" type="note"><para>The minimum height for the derived control <see cref="T:System.Windows.Forms.Splitter" /> is one pixel. The default height for the <see cref="T:System.Windows.Forms.Splitter" /> control is three pixels. Setting the height of the <see cref="T:System.Windows.Forms.Splitter" /> control to a value less than one will reset the property value to the default height.</para></block></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets or sets the height of the control.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="HelpRequested"><MemberSignature Language="C#" Value="public event System.Windows.Forms.HelpEventHandler HelpRequested;" /><MemberType>Event</MemberType><ReturnValue><ReturnType>System.Windows.Forms.HelpEventHandler</ReturnType></ReturnValue><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The <see cref="E:System.Windows.Forms.Control.HelpRequested" /> event is commonly raised when the user presses the F1 key or an associated context-sensitive help button is clicked.</para><para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Occurs when the user requests help for a control.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="Hide"><MemberSignature Language="C#" Value="public void Hide ();" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters /><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Hiding the control is equivalent to setting the <see cref="P:System.Windows.Forms.Control.Visible" /> property to false. After the <see cref="M:System.Windows.Forms.Control.Hide" /> method is called, the <see cref="P:System.Windows.Forms.Control.Visible" /> property returns a value of false until the <see cref="M:System.Windows.Forms.Control.Show" /> method is called.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Conceals the control from the user.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="ImeMode"><MemberSignature Language="C#" Value="public System.Windows.Forms.ImeMode ImeMode { set; get; }" /><MemberType>Property</MemberType><Attributes><Attribute><AttributeName>System.ComponentModel.Localizable(true)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.AmbientValue(System.Windows.Forms.ImeMode.Inherit)</AttributeName></Attribute></Attributes><ReturnValue><ReturnType>System.Windows.Forms.ImeMode</ReturnType></ReturnValue><Docs><value>To be added.</value><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>An IME is a program that enables users to enter complex characters and symbols, such as Japanese Kanji characters, using a standard keyboard. The <see cref="P:System.Windows.Forms.Control.ImeMode" /> property is typically set to <see cref="F:System.Windows.Forms.ImeMode.Off" /> for a <see cref="T:System.Windows.Forms.TextBox" /> control that is intended to only enter numeric values. The <see cref="P:System.Windows.Forms.Control.ImeMode" /> property value is set to <see cref="F:System.Windows.Forms.ImeMode.NoControl" /> for the <see cref="T:System.Windows.Forms.Form" /> class.</para><para>Most classes that do not directly support Input Method Editors, or allow direct input from an IME, will set the value of this property to <see cref="F:System.Windows.Forms.ImeMode.NoControl" />.</para><block subset="none" type="note"><para>The user can interactively change the <see cref="P:System.Windows.Forms.Control.ImeMode" /> unless it has been programmatically set to <see cref="F:System.Windows.Forms.ImeMode.Disable" />. In this case, the user will not be able to use the IME.</para><para>The <see cref="P:System.Windows.Forms.Control.ImeMode" /> property is ignored on Windows 8 when the global input mode is in effect. For more info, see <see cref="http://go.microsoft.com/fwlink/?LinkID=256509">Switch Text Input Changed from Per-Thread to Per-User</see>.</para></block></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets or sets the Input Method Editor (IME) mode of the control.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="ImeModeChanged"><MemberSignature Language="C#" Value="public event EventHandler ImeModeChanged;" /><MemberType>Event</MemberType><ReturnValue><ReturnType>System.EventHandler</ReturnType></ReturnValue><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>This event is raised if the <see cref="P:System.Windows.Forms.Control.ImeMode" /> property is changed by either a programmatic modification or through interaction.</para><para>Controls that do not support Input Method Managers will never raise this event.</para><para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Occurs when the <see cref="P:System.Windows.Forms.Control.ImeMode" /> property has changed.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="InitLayout"><MemberSignature Language="C#" Value="protected virtual void InitLayout ();" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters /><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The <see cref="M:System.Windows.Forms.Control.InitLayout" /> method is called immediately after adding a control to a container. The <see cref="M:System.Windows.Forms.Control.InitLayout" /> method enables a control to initialize its layout state based on its container. For example, you would typically apply anchoring and docking to the control in the <see cref="M:System.Windows.Forms.Control.InitLayout" /> method.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Called after the control has been added to another container.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes></Member><Member MemberName="Invalidate"><MemberSignature Language="C#" Value="public void Invalidate ();" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters /><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Calling the <see cref="M:System.Windows.Forms.Control.Invalidate(System.Drawing.Region)" /> method does not force a synchronous paint; to force a synchronous paint, call the <see cref="M:System.Windows.Forms.Control.Update" /> method after calling the <see cref="M:System.Windows.Forms.Control.Invalidate(System.Drawing.Region)" /> method. When this method is called with no parameters, the entire client area is added to the update region.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Invalidates the entire surface of the control and causes the control to be redrawn.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="Invalidate"><MemberSignature Language="C#" Value="public void Invalidate (bool invalidateChildren);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="invalidateChildren" Type="System.Boolean" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Calling the <see cref="M:System.Windows.Forms.Control.Invalidate(System.Drawing.Region)" /> method does not force a synchronous paint; to force a synchronous paint, call the <see cref="M:System.Windows.Forms.Control.Update" /> method after calling the <see cref="M:System.Windows.Forms.Control.Invalidate(System.Drawing.Region)" /> method. When this method is called with no parameters, the entire client area is added to the update region.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Invalidates a specific region of the control and causes a paint message to be sent to the control. Optionally, invalidates the child controls assigned to the control.</para></summary><param name="invalidateChildren"><attribution license="cc4" from="Microsoft" modified="false" />true to invalidate the control's child controls; otherwise, false. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="Invalidate"><MemberSignature Language="C#" Value="public void Invalidate (System.Drawing.Rectangle rc);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="rc" Type="System.Drawing.Rectangle" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Calling the <see cref="M:System.Windows.Forms.Control.Invalidate(System.Drawing.Region)" /> method does not force a synchronous paint; to force a synchronous paint, call the <see cref="M:System.Windows.Forms.Control.Update" /> method after calling the <see cref="M:System.Windows.Forms.Control.Invalidate(System.Drawing.Region)" /> method. When this method is called with no parameters, the entire client area is added to the update region.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Invalidates the specified region of the control (adds it to the control's update region, which is the area that will be repainted at the next paint operation), and causes a paint message to be sent to the control.</para></summary><param name="rc"><attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Drawing.Rectangle" /> that represents the region to invalidate. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="Invalidate"><MemberSignature Language="C#" Value="public void Invalidate (System.Drawing.Region region);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="region" Type="System.Drawing.Region" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Calling the <see cref="M:System.Windows.Forms.Control.Invalidate(System.Drawing.Region)" /> method does not force a synchronous paint; to force a synchronous paint, call the <see cref="M:System.Windows.Forms.Control.Update" /> method after calling the <see cref="M:System.Windows.Forms.Control.Invalidate(System.Drawing.Region)" /> method. When this method is called with no parameters, the entire client area is added to the update region.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Invalidates the specified region of the control (adds it to the control's update region, which is the area that will be repainted at the next paint operation), and causes a paint message to be sent to the control.</para></summary><param name="region"><attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Drawing.Region" /> to invalidate. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="Invalidate"><MemberSignature Language="C#" Value="public void Invalidate (System.Drawing.Rectangle rc, bool invalidateChildren);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="rc" Type="System.Drawing.Rectangle" /><Parameter Name="invalidateChildren" Type="System.Boolean" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Calling the <see cref="M:System.Windows.Forms.Control.Invalidate(System.Drawing.Region)" /> method does not force a synchronous paint; to force a synchronous paint, call the <see cref="M:System.Windows.Forms.Control.Update" /> method after calling the <see cref="M:System.Windows.Forms.Control.Invalidate(System.Drawing.Region)" /> method. When this method is called with no parameters, the entire client area is added to the update region.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Invalidates the specified region of the control (adds it to the control's update region, which is the area that will be repainted at the next paint operation), and causes a paint message to be sent to the control. Optionally, invalidates the child controls assigned to the control.</para></summary><param name="rc"><attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Drawing.Rectangle" /> that represents the region to invalidate. </param><param name="invalidateChildren"><attribution license="cc4" from="Microsoft" modified="false" />true to invalidate the control's child controls; otherwise, false. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="Invalidate"><MemberSignature Language="C#" Value="public void Invalidate (System.Drawing.Region region, bool invalidateChildren);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="region" Type="System.Drawing.Region" /><Parameter Name="invalidateChildren" Type="System.Boolean" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Calling the <see cref="M:System.Windows.Forms.Control.Invalidate(System.Drawing.Region)" /> method does not force a synchronous paint; to force a synchronous paint, call the <see cref="M:System.Windows.Forms.Control.Update" /> method after calling the <see cref="M:System.Windows.Forms.Control.Invalidate(System.Drawing.Region)" /> method. When this method is called with no parameters, the entire client area is added to the update region.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Invalidates the specified region of the control (adds it to the control's update region, which is the area that will be repainted at the next paint operation), and causes a paint message to be sent to the control. Optionally, invalidates the child controls assigned to the control.</para></summary><param name="region"><attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Drawing.Region" /> to invalidate. </param><param name="invalidateChildren"><attribution license="cc4" from="Microsoft" modified="false" />true to invalidate the control's child controls; otherwise, false. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="Invalidated"><MemberSignature Language="C#" Value="public event System.Windows.Forms.InvalidateEventHandler Invalidated;" /><MemberType>Event</MemberType><Attributes><Attribute><AttributeName>System.ComponentModel.Browsable(false)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes><ReturnValue><ReturnType>System.Windows.Forms.InvalidateEventHandler</ReturnType></ReturnValue><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Occurs when a control's display requires redrawing.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="Invoke"><MemberSignature Language="C#" Value="public object Invoke (Delegate method);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Object</ReturnType></ReturnValue><Parameters><Parameter Name="method" Type="System.Delegate" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Delegates are similar to function pointers in C or C++ languages. Delegates encapsulate a reference to a method inside a delegate object. The delegate object can then be passed to code that calls the referenced method, and the method to be invoked can be unknown at compile time. Unlike function pointers in C or C++, delegates are object-oriented, type-safe, and more secure.</para><para>The <see cref="M:System.Windows.Forms.Control.Invoke(System.Delegate)" /> method searches up the control's parent chain until it finds a control or form that has a window handle if the current control's underlying window handle does not exist yet. If no appropriate handle can be found, the <see cref="M:System.Windows.Forms.Control.Invoke(System.Delegate)" /> method will throw an exception. Exceptions that are raised during the call will be propagated back to the caller.</para><block subset="none" type="note"><para>In addition to the <see cref="P:System.Windows.Forms.Control.InvokeRequired" /> property, there are four methods on a control that are thread safe: <see cref="M:System.Windows.Forms.Control.Invoke(System.Delegate)" />, <see cref="M:System.Windows.Forms.Control.BeginInvoke(System.Delegate)" />, <see cref="M:System.Windows.Forms.Control.EndInvoke(System.IAsyncResult)" />, and <see cref="M:System.Windows.Forms.Control.CreateGraphics" /> if the handle for the control has already been created. Calling <see cref="M:System.Windows.Forms.Control.CreateGraphics" /> before the control's handle has been created on a background thread can cause illegal cross thread calls. For all other method calls, you should use one of the invoke methods to marshal the call to the control's thread.</para></block><para>The delegate can be an instance of <see cref="T:System.EventHandler" />, in which case the sender parameter will contain this control, and the event parameter will contain <see cref="F:System.EventArgs.Empty" />. The delegate can also be an instance of <see cref="T:System.Windows.Forms.MethodInvoker" />, or any other delegate that takes a void parameter list. A call to an <see cref="T:System.EventHandler" /> or <see cref="T:System.Windows.Forms.MethodInvoker" /> delegate will be faster than a call to another type of delegate.</para><block subset="none" type="note"><para>An exception might be thrown if the thread that should process the message is no longer active.</para></block></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Executes the specified delegate on the thread that owns the control's underlying window handle.</para></summary><returns><attribution license="cc4" from="Microsoft" modified="false" /><para>The return value from the delegate being invoked, or null if the delegate has no return value.</para></returns><param name="method"><attribution license="cc4" from="Microsoft" modified="false" />A delegate that contains a method to be called in the control's thread context. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="Invoke"><MemberSignature Language="C#" Value="public object Invoke (Delegate method, object[] args);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Object</ReturnType></ReturnValue><Parameters><Parameter Name="method" Type="System.Delegate" /><Parameter Name="args" Type="System.Object[]"><Attributes><Attribute><AttributeName>System.ParamArray</AttributeName></Attribute></Attributes></Parameter></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Delegates are similar to function pointers in C or C++ languages. Delegates encapsulate a reference to a method inside a delegate object. The delegate object can then be passed to code that calls the referenced method, and the method to be invoked can be unknown at compile time. Unlike function pointers in C or C++, delegates are object-oriented, type-safe, and more secure.</para><para>If the control's handle does not exist yet, this method searches up the control's parent chain until it finds a control or form that does have a window handle. If no appropriate handle can be found, this method throws an exception. Exceptions that are raised during the call will be propagated back to the caller.</para><block subset="none" type="note"><para>In addition to the <see cref="P:System.Windows.Forms.Control.InvokeRequired" /> property, there are four methods on a control that are thread safe: <see cref="M:System.Windows.Forms.Control.Invoke(System.Delegate)" />, <see cref="M:System.Windows.Forms.Control.BeginInvoke(System.Delegate)" />, <see cref="M:System.Windows.Forms.Control.EndInvoke(System.IAsyncResult)" />, and <see cref="M:System.Windows.Forms.Control.CreateGraphics" /> if the handle for the control has already been created. Calling <see cref="M:System.Windows.Forms.Control.CreateGraphics" /> before the control's handle has been created on a background thread can cause illegal cross thread calls. For all other method calls, you should use one of the invoke methods to marshal the call to the control's thread.</para></block><para>The delegate can be an instance of <see cref="T:System.EventHandler" />, in which case the sender parameter will contain this control, and the event parameter will contain <see cref="F:System.EventArgs.Empty" />. The delegate can also be an instance of <see cref="T:System.Windows.Forms.MethodInvoker" />, or any other delegate that takes a void parameter list. A call to an <see cref="T:System.EventHandler" /> or <see cref="T:System.Windows.Forms.MethodInvoker" /> delegate will be faster than a call to another type of delegate.</para><block subset="none" type="note"><para>An exception might be thrown if the thread that should process the message is no longer active.</para></block></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Executes the specified delegate, on the thread that owns the control's underlying window handle, with the specified list of arguments.</para></summary><returns><attribution license="cc4" from="Microsoft" modified="false" /><para>An <see cref="T:System.Object" /> that contains the return value from the delegate being invoked, or null if the delegate has no return value.</para></returns><param name="method"><attribution license="cc4" from="Microsoft" modified="false" />A delegate to a method that takes parameters of the same number and type that are contained in the <paramref name="args" /> parameter. </param><param name="args"><attribution license="cc4" from="Microsoft" modified="false" />An array of objects to pass as arguments to the specified method. This parameter can be null if the method takes no arguments. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="InvokeGotFocus"><MemberSignature Language="C#" Value="protected void InvokeGotFocus (System.Windows.Forms.Control toInvoke, EventArgs e);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="toInvoke" Type="System.Windows.Forms.Control" /><Parameter Name="e" Type="System.EventArgs" /></Parameters><Docs><remarks>To be added.</remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Raises the <see cref="E:System.Windows.Forms.Control.GotFocus" /> event for the specified control.</para></summary><param name="toInvoke"><attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Windows.Forms.Control" /> to assign the event to. </param><param name="e"><attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes></Member><Member MemberName="InvokeLostFocus"><MemberSignature Language="C#" Value="protected void InvokeLostFocus (System.Windows.Forms.Control toInvoke, EventArgs e);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="toInvoke" Type="System.Windows.Forms.Control" /><Parameter Name="e" Type="System.EventArgs" /></Parameters><Docs><remarks>To be added.</remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Raises the <see cref="E:System.Windows.Forms.Control.LostFocus" /> event for the specified control.</para></summary><param name="toInvoke"><attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Windows.Forms.Control" /> to assign the event to. </param><param name="e"><attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes></Member><Member MemberName="InvokeOnClick"><MemberSignature Language="C#" Value="protected void InvokeOnClick (System.Windows.Forms.Control toInvoke, EventArgs e);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="toInvoke" Type="System.Windows.Forms.Control" /><Parameter Name="e" Type="System.EventArgs" /></Parameters><Docs><remarks>To be added.</remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Raises the <see cref="E:System.Windows.Forms.Control.Click" /> event for the specified control.</para></summary><param name="toInvoke"><attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Windows.Forms.Control" /> to assign the <see cref="E:System.Windows.Forms.Control.Click" /> event to. </param><param name="e"><attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes></Member><Member MemberName="InvokePaint"><MemberSignature Language="C#" Value="protected void InvokePaint (System.Windows.Forms.Control c, System.Windows.Forms.PaintEventArgs e);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="c" Type="System.Windows.Forms.Control" /><Parameter Name="e" Type="System.Windows.Forms.PaintEventArgs" /></Parameters><Docs><remarks>To be added.</remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Raises the <see cref="E:System.Windows.Forms.Control.Paint" /> event for the specified control.</para></summary><param name="c"><attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Windows.Forms.Control" /> to assign the <see cref="E:System.Windows.Forms.Control.Paint" /> event to. </param><param name="e"><attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.Windows.Forms.PaintEventArgs" /> that contains the event data. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="InvokePaintBackground"><MemberSignature Language="C#" Value="protected void InvokePaintBackground (System.Windows.Forms.Control c, System.Windows.Forms.PaintEventArgs e);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="c" Type="System.Windows.Forms.Control" /><Parameter Name="e" Type="System.Windows.Forms.PaintEventArgs" /></Parameters><Docs><remarks>To be added.</remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Raises the PaintBackground event for the specified control.</para></summary><param name="c"><attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Windows.Forms.Control" /> to assign the <see cref="E:System.Windows.Forms.Control.Paint" /> event to. </param><param name="e"><attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.Windows.Forms.PaintEventArgs" /> that contains the event data. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="InvokeRequired"><MemberSignature Language="C#" Value="public bool InvokeRequired { get; }" /><MemberType>Property</MemberType><Attributes><Attribute><AttributeName>System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Hidden)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.Browsable(false)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes><ReturnValue><ReturnType>System.Boolean</ReturnType></ReturnValue><Docs><value>To be added.</value><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Controls in Windows Forms are bound to a specific thread and are not thread safe. Therefore, if you are calling a control's method from a different thread, you must use one of the control's invoke methods to marshal the call to the proper thread. This property can be used to determine if you must call an invoke method, which can be useful if you do not know what thread owns a control. </para><block subset="none" type="note"><para>In addition to the <see cref="P:System.Windows.Forms.Control.InvokeRequired" /> property, there are four methods on a control that are thread safe to call: <see cref="M:System.Windows.Forms.Control.Invoke(System.Delegate)" />, <see cref="M:System.Windows.Forms.Control.BeginInvoke(System.Delegate)" />, <see cref="M:System.Windows.Forms.Control.EndInvoke(System.IAsyncResult)" /> and <see cref="M:System.Windows.Forms.Control.CreateGraphics" /> if the handle for the control has already been created. Calling <see cref="M:System.Windows.Forms.Control.CreateGraphics" /> before the control's handle has been created on a background thread can cause illegal cross thread calls. For all other method calls, you should use one of these invoke methods when calling from a different thread.</para></block><para>If the control's handle does not yet exist, <see cref="P:System.Windows.Forms.Control.InvokeRequired" /> searches up the control's parent chain until it finds a control or form that does have a window handle. If no appropriate handle can be found, the <see cref="P:System.Windows.Forms.Control.InvokeRequired" /> method returns false. </para><para>This means that <see cref="P:System.Windows.Forms.Control.InvokeRequired" /> can return false if <see cref="M:System.Windows.Forms.Control.Invoke(System.Delegate)" /> is not required (the call occurs on the same thread), or if the control was created on a different thread but the control's handle has not yet been created. </para><para>In the case where the control's handle has not yet been created, you should not simply call properties, methods, or events on the control. This might cause the control's handle to be created on the background thread, isolating the control on a thread without a message pump and making the application unstable.</para><para>You can protect against this case by also checking the value of <see cref="P:System.Windows.Forms.Control.IsHandleCreated" /> when <see cref="P:System.Windows.Forms.Control.InvokeRequired" /> returns false on a background thread. If the control handle has not yet been created, you must wait until it has been created before calling <see cref="M:System.Windows.Forms.Control.Invoke(System.Delegate)" /> or <see cref="M:System.Windows.Forms.Control.BeginInvoke(System.Delegate)" />. Typically, this happens only if a background thread is created in the constructor of the primary form for the application (as in Application.Run(new MainForm()), before the form has been shown or Application.Run has been called. </para><para>One solution is to wait until the form's handle has been created before starting the background thread. Either force handle creation by calling the <see cref="P:System.Windows.Forms.Control.Handle" /> property, or wait until the <see cref="E:System.Windows.Forms.Form.Load" /> event to start the background process. </para><para>An even better solution is to use the SynchronizationContext returned by <see cref="T:System.Threading.SynchronizationContext" /> rather than a control for cross-thread marshaling.</para><block subset="none" type="note"><para>An exception might be thrown if the thread that should process the message is no longer active.</para></block><para>For more information about multithreaded Windows Forms controls, see <format type="text/html"><a href="7FE3956F-5B8F-4F78-8AAE-C9EB0B28F13A">How to: Use a Background Thread to Search for Files</a></format> and <format type="text/html"><a href="138f38b6-1099-4fd5-910c-390b41cbad35">How to: Make Thread-Safe Calls to Windows Forms Controls</a></format>.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets a value indicating whether the caller must call an invoke method when making method calls to the control because the caller is on a different thread than the one the control was created on.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="IsAccessible"><MemberSignature Language="C#" Value="public bool IsAccessible { set; get; }" /><MemberType>Property</MemberType><Attributes><Attribute><AttributeName>System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Hidden)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.Browsable(false)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes><ReturnValue><ReturnType>System.Boolean</ReturnType></ReturnValue><Docs><value>To be added.</value><remarks>To be added.</remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets or sets a value indicating whether the control is visible to accessibility applications.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="IsDisposed"><MemberSignature Language="C#" Value="public bool IsDisposed { get; }" /><MemberType>Property</MemberType><Attributes><Attribute><AttributeName>System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Hidden)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.Browsable(false)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes><ReturnValue><ReturnType>System.Boolean</ReturnType></ReturnValue><Docs><value>To be added.</value><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>When this property returns true, the control is disposed of and can no longer be referenced as a valid Windows control. Even though the instance of a control is disposed of, it is still maintained in memory until it is removed from memory through garbage collection. When a control is disposed, you cannot call its <see cref="M:System.Windows.Forms.Control.RecreateHandle" /> method.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets a value indicating whether the control has been disposed of.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="IsHandleCreated"><MemberSignature Language="C#" Value="public bool IsHandleCreated { get; }" /><MemberType>Property</MemberType><Attributes><Attribute><AttributeName>System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Hidden)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.Browsable(false)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes><ReturnValue><ReturnType>System.Boolean</ReturnType></ReturnValue><Docs><value>To be added.</value><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Use the <see cref="P:System.Windows.Forms.Control.IsHandleCreated" /> property to determine whether <see cref="M:System.Windows.Forms.Control.CreateHandle" /> has been called.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets a value indicating whether the control has a handle associated with it.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="IsInputChar"><MemberSignature Language="C#" Value="protected virtual bool IsInputChar (char charCode);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Boolean</ReturnType></ReturnValue><Parameters><Parameter Name="charCode" Type="System.Char" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Call the <see cref="M:System.Windows.Forms.Control.IsInputChar(System.Char)" /> method to determine whether the character specified by the <paramref name="charCode" /> parameter is an input character that the control wants. This method is called during window message preprocessing to determine whether the specified input character should be preprocessed or sent directly to the control. If <see cref="M:System.Windows.Forms.Control.IsInputChar(System.Char)" /> returns true, the specified character is sent directly to the control. If <see cref="M:System.Windows.Forms.Control.IsInputChar(System.Char)" /> returns false, the specified character is preprocessed and only sent to the control if it is not consumed by the preprocessing phase. The preprocessing of a character includes checking whether the character is a mnemonic of another control.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Determines if a character is an input character that the control recognizes.</para></summary><returns><attribution license="cc4" from="Microsoft" modified="false" /><para>true if the character should be sent directly to the control and not preprocessed; otherwise, false.</para></returns><param name="charCode"><attribution license="cc4" from="Microsoft" modified="false" />The character to test. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="IsInputKey"><MemberSignature Language="C#" Value="protected virtual bool IsInputKey (System.Windows.Forms.Keys keyData);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Boolean</ReturnType></ReturnValue><Parameters><Parameter Name="keyData" Type="System.Windows.Forms.Keys" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Call the <see cref="M:System.Windows.Forms.Control.IsInputKey(System.Windows.Forms.Keys)" /> method to determine whether the key specified by the <paramref name="keyData" /> parameter is an input key that the control wants. This method is called during window message preprocessing to determine whether the specified input key should be preprocessed or sent directly to the control. If <see cref="M:System.Windows.Forms.Control.IsInputKey(System.Windows.Forms.Keys)" /> returns true, the specified key is sent directly to the control. If <see cref="M:System.Windows.Forms.Control.IsInputKey(System.Windows.Forms.Keys)" /> returns false, the specified key is preprocessed and only sent to the control if it is not consumed by the preprocessing phase. Keys that are preprocessed include the TAB, RETURN, ESC, and the UP ARROW, DOWN ARROW, LEFT ARROW, and RIGHT ARROW keys.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Determines whether the specified key is a regular input key or a special key that requires preprocessing.</para></summary><returns><attribution license="cc4" from="Microsoft" modified="false" /><para>true if the specified key is a regular input key; otherwise, false.</para></returns><param name="keyData"><attribution license="cc4" from="Microsoft" modified="false" />One of the <see cref="T:System.Windows.Forms.Keys" /> values. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="IsKeyLocked"><MemberSignature Language="C#" Value="public static bool IsKeyLocked (System.Windows.Forms.Keys keyVal);" /><MemberType>Method</MemberType><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Boolean</ReturnType></ReturnValue><Parameters><Parameter Name="keyVal" Type="System.Windows.Forms.Keys" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Use the <see cref="M:System.Windows.Forms.Control.IsKeyLocked(System.Windows.Forms.Keys)" /> property to determine whether the CAPS LOCK, NUM LOCK, or SCROLL LOCK keys are on, whether individually or in combination.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Determines whether the CAPS LOCK, NUM LOCK, or SCROLL LOCK key is in effect.</para></summary><returns><attribution license="cc4" from="Microsoft" modified="false" /><para>true if the specified key or keys are in effect; otherwise, false.</para></returns><param name="keyVal"><attribution license="cc4" from="Microsoft" modified="false" />The CAPS LOCK, NUM LOCK, or SCROLL LOCK member of the <see cref="T:System.Windows.Forms.Keys" /> enumeration. </param></Docs></Member><Member MemberName="IsMirrored"><MemberSignature Language="C#" Value="public bool IsMirrored { get; }" /><MemberType>Property</MemberType><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.Browsable(false)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Hidden)</AttributeName></Attribute></Attributes><ReturnValue><ReturnType>System.Boolean</ReturnType></ReturnValue><Docs><value>To be added.</value><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>A mirrored control displays both layout and text from right to left. For more information, see <format type="text/html"><a href="7c5c4ecc-9bfb-4508-8383-753e306719b1">How to: Create Mirrored Windows Forms and Controls</a></format>.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets a value indicating whether the control is mirrored.</para></summary></Docs></Member><Member MemberName="IsMnemonic"><MemberSignature Language="C#" Value="public static bool IsMnemonic (char charCode, string text);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Boolean</ReturnType></ReturnValue><Parameters><Parameter Name="charCode" Type="System.Char" /><Parameter Name="text" Type="System.String" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The mnemonic character is the character immediately following the first instance of "&amp;" in a <see cref="T:System.String" />.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Determines if the specified character is the mnemonic character assigned to the control in the specified string.</para></summary><returns><attribution license="cc4" from="Microsoft" modified="false" /><para>true if the <paramref name="charCode" /> character is the mnemonic character assigned to the control; otherwise, false.</para></returns><param name="charCode"><attribution license="cc4" from="Microsoft" modified="false" />The character to test. </param><param name="text"><attribution license="cc4" from="Microsoft" modified="false" />The string to search. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="KeyDown"><MemberSignature Language="C#" Value="public event System.Windows.Forms.KeyEventHandler KeyDown;" /><MemberType>Event</MemberType><ReturnValue><ReturnType>System.Windows.Forms.KeyEventHandler</ReturnType></ReturnValue><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Key events occur in the following order: </para><list type="ordered"><item><para><see cref="E:System.Windows.Forms.Control.KeyDown" /></para></item><item><para><see cref="E:System.Windows.Forms.Control.KeyPress" /></para></item><item><para><see cref="E:System.Windows.Forms.Control.KeyUp" /></para></item></list><para>To handle keyboard events only at the form level and not enable other controls to receive keyboard events, set the <see cref="P:System.Windows.Forms.KeyPressEventArgs.Handled" /> property in your form's <see cref="E:System.Windows.Forms.Control.KeyPress" /> event-handling method to true. Certain keys, such as the TAB, RETURN, ESC, and arrow keys are handled by controls automatically. To have these keys raise the <see cref="E:System.Windows.Forms.Control.KeyDown" /> event, you must override the <see cref="M:System.Windows.Forms.Control.IsInputKey(System.Windows.Forms.Keys)" /> method in each control on your form. The code for the override of the <see cref="M:System.Windows.Forms.Control.IsInputKey(System.Windows.Forms.Keys)" /> would need to determine if one of the special keys is pressed and return a value of true. Instead of overriding the <see cref="M:System.Windows.Forms.Control.IsInputKey(System.Windows.Forms.Keys)" /> method, you can handle the <see cref="E:System.Windows.Forms.Control.PreviewKeyDown" /> event and set the <see cref="P:System.Windows.Forms.PreviewKeyDownEventArgs.IsInputKey" /> property to true. For a code example, see the <see cref="E:System.Windows.Forms.Control.PreviewKeyDown" /> event.</para><para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Occurs when a key is pressed while the control has focus.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="KeyPress"><MemberSignature Language="C#" Value="public event System.Windows.Forms.KeyPressEventHandler KeyPress;" /><MemberType>Event</MemberType><ReturnValue><ReturnType>System.Windows.Forms.KeyPressEventHandler</ReturnType></ReturnValue><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Key events occur in the following order: </para><list type="ordered"><item><para><see cref="E:System.Windows.Forms.Control.KeyDown" /></para></item><item><para><see cref="E:System.Windows.Forms.Control.KeyPress" /></para></item><item><para><see cref="E:System.Windows.Forms.Control.KeyUp" /></para></item></list><para>The <see cref="E:System.Windows.Forms.Control.KeyPress" /> event is not raised by noncharacter keys; however, the noncharacter keys do raise the <see cref="E:System.Windows.Forms.Control.KeyDown" /> and <see cref="E:System.Windows.Forms.Control.KeyUp" /> events.</para><para>Use the <see cref="P:System.Windows.Forms.KeyPressEventArgs.KeyChar" /> property to sample keystrokes at run time and to consume or modify a subset of common keystrokes.</para><para>To handle keyboard events only at the form level and not enable other controls to receive keyboard events, set the <see cref="P:System.Windows.Forms.KeyPressEventArgs.Handled" /> property in your form's <see cref="E:System.Windows.Forms.Control.KeyPress" /> event-handling method to true.</para><para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Occurs when a key is pressed while the control has focus.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="KeyUp"><MemberSignature Language="C#" Value="public event System.Windows.Forms.KeyEventHandler KeyUp;" /><MemberType>Event</MemberType><ReturnValue><ReturnType>System.Windows.Forms.KeyEventHandler</ReturnType></ReturnValue><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Key events occur in the following order: </para><list type="ordered"><item><para><see cref="E:System.Windows.Forms.Control.KeyDown" /></para></item><item><para><see cref="E:System.Windows.Forms.Control.KeyPress" /></para></item><item><para><see cref="E:System.Windows.Forms.Control.KeyUp" /></para></item></list><para>To handle keyboard events only at the form level and not enable other controls to receive keyboard events, set the <see cref="P:System.Windows.Forms.KeyPressEventArgs.Handled" /> property in your form's <see cref="E:System.Windows.Forms.Control.KeyPress" /> event-handling method to true. Certain keys, such as the TAB, RETURN, ESC, and arrow keys are handled by controls automatically. To have these keys raise the <see cref="E:System.Windows.Forms.Control.KeyUp" /> event, you must override the <see cref="M:System.Windows.Forms.Control.IsInputKey(System.Windows.Forms.Keys)" /> method in each control on your form. The code for the override of <see cref="M:System.Windows.Forms.Control.IsInputKey(System.Windows.Forms.Keys)" /> would need to determine if one of the special keys is pressed and return a value of true.</para><para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Occurs when a key is released while the control has focus.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="Layout"><MemberSignature Language="C#" Value="public event System.Windows.Forms.LayoutEventHandler Layout;" /><MemberType>Event</MemberType><ReturnValue><ReturnType>System.Windows.Forms.LayoutEventHandler</ReturnType></ReturnValue><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The <see cref="E:System.Windows.Forms.Control.Layout" /> event occurs when child controls are added or removed, when the bounds of the control changes, and when other changes occur that can affect the layout of the control. The layout event can be suppressed using the <see cref="M:System.Windows.Forms.Control.SuspendLayout" /> and <see cref="M:System.Windows.Forms.Control.ResumeLayout" /> methods. Suspending layout enables you to perform multiple actions on a control without having to perform a layout for each change. For example, if you resize and move a control, each operation would raise a <see cref="E:System.Windows.Forms.Control.Layout" /> event.</para><para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Occurs when a control should reposition its child controls.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="LayoutEngine"><MemberSignature Language="C#" Value="public virtual System.Windows.Forms.Layout.LayoutEngine LayoutEngine { get; }" /><MemberType>Property</MemberType><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.Browsable(false)</AttributeName></Attribute></Attributes><ReturnValue><ReturnType>System.Windows.Forms.Layout.LayoutEngine</ReturnType></ReturnValue><Docs><value>To be added.</value><since version=".NET 2.0" /><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The <see cref="P:System.Windows.Forms.Control.LayoutEngine" /> property gets the layout engine for the control's children rather than for the control itself.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets a cached instance of the control's layout engine.</para></summary></Docs><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="Leave"><MemberSignature Language="C#" Value="public event EventHandler Leave;" /><MemberType>Event</MemberType><ReturnValue><ReturnType>System.EventHandler</ReturnType></ReturnValue><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>When you change the focus by using the keyboard (TAB, SHIFT+TAB, and so on), by calling the <see cref="M:System.Windows.Forms.Control.Select" /> or <see cref="M:System.Windows.Forms.Control.SelectNextControl(System.Windows.Forms.Control,System.Boolean,System.Boolean,System.Boolean,System.Boolean)" /> methods, or by setting the <see cref="P:System.Windows.Forms.ContainerControl.ActiveControl" /> property to the current form, focus events occur in the following order: </para><list type="ordered"><item><para><see cref="E:System.Windows.Forms.Control.Enter" /></para></item><item><para><see cref="E:System.Windows.Forms.Control.GotFocus" /></para></item><item><para><see cref="E:System.Windows.Forms.Control.Leave" /></para></item><item><para><see cref="E:System.Windows.Forms.Control.Validating" /></para></item><item><para><see cref="E:System.Windows.Forms.Control.Validated" /></para></item><item><para><see cref="E:System.Windows.Forms.Control.LostFocus" /></para></item></list><para>When you change the focus by using the mouse or by calling the <see cref="M:System.Windows.Forms.Control.Focus" /> method, focus events occur in the following order: </para><list type="ordered"><item><para><see cref="E:System.Windows.Forms.Control.Enter" /></para></item><item><para><see cref="E:System.Windows.Forms.Control.GotFocus" /></para></item><item><para><see cref="E:System.Windows.Forms.Control.LostFocus" /></para></item><item><para><see cref="E:System.Windows.Forms.Control.Leave" /></para></item><item><para><see cref="E:System.Windows.Forms.Control.Validating" /></para></item><item><para><see cref="E:System.Windows.Forms.Control.Validated" /></para></item></list><para>If the <see cref="P:System.Windows.Forms.Control.CausesValidation" /> property is set to false, the <see cref="E:System.Windows.Forms.Control.Validating" /> and <see cref="E:System.Windows.Forms.Control.Validated" /> events are suppressed.</para><block subset="none" type="note"><para>The <see cref="E:System.Windows.Forms.Control.Enter" /> and <see cref="E:System.Windows.Forms.Control.Leave" /> events are suppressed by the <see cref="T:System.Windows.Forms.Form" /> class. The equivalent events in the <see cref="T:System.Windows.Forms.Form" /> class are the <see cref="E:System.Windows.Forms.Form.Activated" /> and <see cref="E:System.Windows.Forms.Form.Deactivate" /> events. The <see cref="E:System.Windows.Forms.Control.Enter" /> and <see cref="E:System.Windows.Forms.Control.Leave" /> events are hierarchical and will cascade up and down the parent chain until the appropriate control is reached. For example, assume you have a <see cref="T:System.Windows.Forms.Form" /> with two <see cref="T:System.Windows.Forms.GroupBox" /> controls, and each <see cref="T:System.Windows.Forms.GroupBox" /> control has one <see cref="T:System.Windows.Forms.TextBox" /> control. When the caret is moved from one <see cref="T:System.Windows.Forms.TextBox" /> to the other, the <see cref="E:System.Windows.Forms.Control.Leave" /> event is raised for the <see cref="T:System.Windows.Forms.TextBox" /> and <see cref="T:System.Windows.Forms.GroupBox" />, and the <see cref="E:System.Windows.Forms.Control.Enter" /> event is raised for the other <see cref="T:System.Windows.Forms.GroupBox" /> and <see cref="T:System.Windows.Forms.TextBox" />.</para></block><block subset="none" type="note"><para>Do not attempt to set focus from within the <see cref="E:System.Windows.Forms.Control.Enter" />, <see cref="E:System.Windows.Forms.Control.GotFocus" />, <see cref="E:System.Windows.Forms.Control.Leave" />, <see cref="E:System.Windows.Forms.Control.LostFocus" />, <see cref="E:System.Windows.Forms.Control.Validating" />, or <see cref="E:System.Windows.Forms.Control.Validated" /> event handlers. Doing so can cause your application or the operating system to stop responding. For more information, see the WM_KILLFOCUS topic in the "Keyboard Input Reference" section, and the "Message Deadlocks" section of the "About Messages and Message Queues" topic in the MSDN library at http://msdn.microsoft.com/library.</para></block><para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Occurs when the input focus leaves the control.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="Left"><MemberSignature Language="C#" Value="public int Left { set; get; }" /><MemberType>Property</MemberType><Attributes><Attribute><AttributeName>System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Hidden)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.Browsable(false)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Always)</AttributeName></Attribute></Attributes><ReturnValue><ReturnType>System.Int32</ReturnType></ReturnValue><Docs><value>To be added.</value><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The <see cref="P:System.Windows.Forms.Control.Left" /> property value is equivalent to the <see cref="P:System.Drawing.Point.X" /> property of the <see cref="P:System.Windows.Forms.Control.Location" /> property value of the control.</para><para>Changes made to the <see cref="P:System.Windows.Forms.Control.Width" /> and <see cref="P:System.Windows.Forms.Control.Left" /> property values cause the <see cref="P:System.Windows.Forms.Control.Right" /> property value of the control to change.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets or sets the distance, in pixels, between the left edge of the control and the left edge of its container's client area.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="Location"><MemberSignature Language="C#" Value="public System.Drawing.Point Location { set; get; }" /><MemberType>Property</MemberType><Attributes><Attribute><AttributeName>System.ComponentModel.Localizable(true)</AttributeName></Attribute></Attributes><ReturnValue><ReturnType>System.Drawing.Point</ReturnType></ReturnValue><Docs><value>To be added.</value><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Because the <see cref="T:System.Drawing.Point" /> class is a value type (Structure in vbprvb, struct in csprcs), it is returned by value, meaning accessing the property returns a copy of the upper-left point of the control. So, adjusting the <see cref="P:System.Drawing.Point.X" /> or <see cref="P:System.Drawing.Point.Y" /> properties of the <see cref="T:System.Drawing.Point" /> returned from this property will not affect the <see cref="P:System.Windows.Forms.Control.Left" />, <see cref="P:System.Windows.Forms.Control.Right" />, <see cref="P:System.Windows.Forms.Control.Top" />, or <see cref="P:System.Windows.Forms.Control.Bottom" /> property values of the control. To adjust these properties set each property value individually, or set the <see cref="P:System.Windows.Forms.Control.Location" /> property with a new <see cref="T:System.Drawing.Point" />.</para><para>If the <see cref="T:System.Windows.Forms.Control" /> is a <see cref="T:System.Windows.Forms.Form" />, the <see cref="P:System.Windows.Forms.Control.Location" /> property value represents the upper-left corner of the <see cref="T:System.Windows.Forms.Form" /> in screen coordinates.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets or sets the coordinates of the upper-left corner of the control relative to the upper-left corner of its container.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="LocationChanged"><MemberSignature Language="C#" Value="public event EventHandler LocationChanged;" /><MemberType>Event</MemberType><ReturnValue><ReturnType>System.EventHandler</ReturnType></ReturnValue><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>This event is raised if the <see cref="P:System.Windows.Forms.Control.Location" /> property is changed by either a programmatic modification or through interaction.</para><para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Occurs when the <see cref="P:System.Windows.Forms.Control.Location" /> property value has changed.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="LostFocus"><MemberSignature Language="C#" Value="public event EventHandler LostFocus;" /><MemberType>Event</MemberType><Attributes><Attribute><AttributeName>System.ComponentModel.Browsable(false)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes><ReturnValue><ReturnType>System.EventHandler</ReturnType></ReturnValue><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>When you change the focus by using the keyboard (TAB, SHIFT+TAB, and so on), by calling the <see cref="M:System.Windows.Forms.Control.Select" /> or <see cref="M:System.Windows.Forms.Control.SelectNextControl(System.Windows.Forms.Control,System.Boolean,System.Boolean,System.Boolean,System.Boolean)" /> methods, or by setting the <see cref="P:System.Windows.Forms.ContainerControl.ActiveControl" /> property to the current form, focus events occur in the following order: </para><list type="ordered"><item><para><see cref="E:System.Windows.Forms.Control.Enter" /></para></item><item><para><see cref="E:System.Windows.Forms.Control.GotFocus" /></para></item><item><para><see cref="E:System.Windows.Forms.Control.Leave" /></para></item><item><para><see cref="E:System.Windows.Forms.Control.Validating" /></para></item><item><para><see cref="E:System.Windows.Forms.Control.Validated" /></para></item><item><para><see cref="E:System.Windows.Forms.Control.LostFocus" /></para></item></list><para>When you change the focus by using the mouse or by calling the <see cref="M:System.Windows.Forms.Control.Focus" /> method, focus events occur in the following order: </para><list type="ordered"><item><para><see cref="E:System.Windows.Forms.Control.Enter" /></para></item><item><para><see cref="E:System.Windows.Forms.Control.GotFocus" /></para></item><item><para><see cref="E:System.Windows.Forms.Control.LostFocus" /></para></item><item><para><see cref="E:System.Windows.Forms.Control.Leave" /></para></item><item><para><see cref="E:System.Windows.Forms.Control.Validating" /></para></item><item><para><see cref="E:System.Windows.Forms.Control.Validated" /></para></item></list><para>If the <see cref="P:System.Windows.Forms.Control.CausesValidation" /> property is set to false, the <see cref="E:System.Windows.Forms.Control.Validating" /> and <see cref="E:System.Windows.Forms.Control.Validated" /> events are suppressed.</para><para>If the <see cref="P:System.ComponentModel.CancelEventArgs.Cancel" /> property of the <see cref="T:System.ComponentModel.CancelEventArgs" /> is set to true in the <see cref="E:System.Windows.Forms.Control.Validating" /> event delegate, all events that would usually occur after the <see cref="E:System.Windows.Forms.Control.Validating" /> event are suppressed.</para><block subset="none" type="note"><para>The <see cref="E:System.Windows.Forms.Control.GotFocus" /> and <see cref="E:System.Windows.Forms.Control.LostFocus" /> events are low-level focus events that are tied to the WM_KILLFOCUS and WM_SETFOCUS Windows messages. Typically, the <see cref="E:System.Windows.Forms.Control.GotFocus" /> and <see cref="E:System.Windows.Forms.Control.LostFocus" /> events are only used when updating <see cref="T:System.Windows.Forms.UICues" /> or when writing custom controls. Instead the <see cref="E:System.Windows.Forms.Control.Enter" /> and <see cref="E:System.Windows.Forms.Control.Leave" /> events should be used for all controls except the <see cref="T:System.Windows.Forms.Form" /> class, which uses the <see cref="E:System.Windows.Forms.Form.Activated" /> and <see cref="E:System.Windows.Forms.Form.Deactivate" /> events. For more information about the <see cref="E:System.Windows.Forms.Control.GotFocus" /> and <see cref="E:System.Windows.Forms.Control.LostFocus" /> events, see the WM_SETFOCUS and WM_KILLFOCUS topics in the "Keyboard Input Reference" section in the MSDN library at http://msdn.microsoft.com/library.</para></block><block subset="none" type="note"><para>Do not attempt to set focus from within the <see cref="E:System.Windows.Forms.Control.Enter" />, <see cref="E:System.Windows.Forms.Control.GotFocus" />, <see cref="E:System.Windows.Forms.Control.Leave" />, <see cref="E:System.Windows.Forms.Control.LostFocus" />, <see cref="E:System.Windows.Forms.Control.Validating" />, or <see cref="E:System.Windows.Forms.Control.Validated" /> event handlers. Doing so can cause your application or the operating system to stop responding. For more information, see the WM_KILLFOCUS topic in the "Keyboard Input Reference" section, and the "Message Deadlocks" section of the "About Messages and Message Queues" topic in the MSDN library at http://msdn.microsoft.com/library.</para></block><para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Occurs when the control loses focus.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="Margin"><MemberSignature Language="C#" Value="public System.Windows.Forms.Padding Margin { set; get; }" /><MemberType>Property</MemberType><Attributes><Attribute><AttributeName>System.ComponentModel.Localizable(true)</AttributeName></Attribute></Attributes><ReturnValue><ReturnType>System.Windows.Forms.Padding</ReturnType></ReturnValue><Docs><value>To be added.</value><since version=".NET 2.0" /><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Controls receive default values for <see cref="P:System.Windows.Forms.Control.Margin" /> that are reasonably close to Windows user interface guidelines. Some adjustments might still be necessary for particular applications.</para><block subset="none" type="note"><para>Setting the <see cref="P:System.Windows.Forms.Control.Margin" /> property on a docked control has no effect on the distance of the control from the the edges of its container.</para></block></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets or sets the space between controls.</para></summary></Docs><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="MarginChanged"><MemberSignature Language="C#" Value="public event EventHandler MarginChanged;" /><MemberType>Event</MemberType><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.EventHandler</ReturnType></ReturnValue><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>For more information about handling events, see <format type="text/html"><a href="01e4f1bc-e55e-413f-98c7-6588493e5f67">Consuming Events</a></format>. </para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Occurs when the control's margin changes.</para></summary></Docs></Member><Member MemberName="MaximumSize"><MemberSignature Language="C#" Value="public virtual System.Drawing.Size MaximumSize { set; get; }" /><MemberType>Property</MemberType><Attributes><Attribute><AttributeName>System.ComponentModel.AmbientValue("{Width=0, Height=0}")</AttributeName></Attribute></Attributes><ReturnValue><ReturnType>System.Drawing.Size</ReturnType></ReturnValue><Docs><value>To be added.</value><remarks>To be added.</remarks><since version=".NET 2.0" /><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets or sets the size that is the upper limit that <see cref="M:System.Windows.Forms.Control.GetPreferredSize(System.Drawing.Size)" /> can specify.</para></summary></Docs><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="MinimumSize"><MemberSignature Language="C#" Value="public virtual System.Drawing.Size MinimumSize { set; get; }" /><MemberType>Property</MemberType><ReturnValue><ReturnType>System.Drawing.Size</ReturnType></ReturnValue><Docs><value>To be added.</value><remarks>To be added.</remarks><since version=".NET 2.0" /><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets or sets the size that is the lower limit that <see cref="M:System.Windows.Forms.Control.GetPreferredSize(System.Drawing.Size)" /> can specify.</para></summary></Docs><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="ModifierKeys"><MemberSignature Language="C#" Value="public static System.Windows.Forms.Keys ModifierKeys { get; }" /><MemberType>Property</MemberType><ReturnValue><ReturnType>System.Windows.Forms.Keys</ReturnType></ReturnValue><Docs><value>To be added.</value><remarks>To be added.</remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets a value indicating which of the modifier keys (SHIFT, CTRL, and ALT) is in a pressed state.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="MouseButtons"><MemberSignature Language="C#" Value="public static System.Windows.Forms.MouseButtons MouseButtons { get; }" /><MemberType>Property</MemberType><ReturnValue><ReturnType>System.Windows.Forms.MouseButtons</ReturnType></ReturnValue><Docs><value>To be added.</value><remarks>To be added.</remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets a value indicating which of the mouse buttons is in a pressed state.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="MouseCaptureChanged"><MemberSignature Language="C#" Value="public event EventHandler MouseCaptureChanged;" /><MemberType>Event</MemberType><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.EventHandler</ReturnType></ReturnValue><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>In rare scenarios, you might need to detect unexpected input. For example, consider the following scenarios.</para><list type="bullet"><item><para>During a mouse operation, the user opens the Start menu by pressing the Windows key or CTRL+ESC.</para></item><item><para>During a mouse operation, the user switches to another program by pressing ALT+TAB.</para></item><item><para>During a mouse operation, another program displays a window or a message box that takes focus away from the current application.</para></item></list><para>Mouse operations can include clicking and holding the mouse on a form or a control, or performing a mouse drag operation. If you have to detect when a form or a control loses mouse capture for these and related unexpected scenarios, you can use the <see cref="E:System.Windows.Forms.Control.MouseCaptureChanged" /> event.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Occurs when the control loses mouse capture.</para></summary></Docs></Member><Member MemberName="MouseClick"><MemberSignature Language="C#" Value="public event System.Windows.Forms.MouseEventHandler MouseClick;" /><MemberType>Event</MemberType><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Windows.Forms.MouseEventHandler</ReturnType></ReturnValue><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Depressing a mouse button when the cursor is over a control typically raises the following series of events from the control:</para><list type="ordered"><item><para><see cref="E:System.Windows.Forms.Control.MouseDown" /> event.</para></item><item><para><see cref="E:System.Windows.Forms.Control.Click" /> event.</para></item><item><para><see cref="E:System.Windows.Forms.Control.MouseClick" /> event.</para></item><item><para><see cref="E:System.Windows.Forms.Control.MouseUp" /> event.</para></item></list><para>For this to occur, the various events cannot be disabled in the control's class. </para><para>Two single clicks that occur close enough in time, as determined by the mouse settings of the user's operating system, will generate a <see cref="E:System.Windows.Forms.Control.MouseDoubleClick" /> event instead of the second <see cref="E:System.Windows.Forms.Control.MouseClick" /> event.</para><block subset="none" type="note"><para><see cref="E:System.Windows.Forms.Control.Click" /> events are logically higher-level events of a control. They are often raised by other actions, such as pressing the ENTER key when the control has focus.</para></block><para>For more information about handling events, see <format type="text/html"><a href="01e4f1bc-e55e-413f-98c7-6588493e5f67">Consuming Events</a></format>. </para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Occurs when the control is clicked by the mouse.</para></summary></Docs></Member><Member MemberName="MouseDoubleClick"><MemberSignature Language="C#" Value="public event System.Windows.Forms.MouseEventHandler MouseDoubleClick;" /><MemberType>Event</MemberType><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Windows.Forms.MouseEventHandler</ReturnType></ReturnValue><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The <see cref="E:System.Windows.Forms.Control.MouseDoubleClick" /> event occurs when the user depresses a mouse button twice in quick succession when the cursor is over the control. The time interval that separates two single clicks from a double-click is determined by the mouse settings of the user's operating system.</para><para>The following series of events is raised by the control when such a user action takes place:</para><list type="ordered"><item><para><see cref="E:System.Windows.Forms.Control.MouseDown" /> event.</para></item><item><para><see cref="E:System.Windows.Forms.Control.Click" /> event.</para></item><item><para><see cref="E:System.Windows.Forms.Control.MouseClick" /> event.</para></item><item><para><see cref="E:System.Windows.Forms.Control.MouseUp" /> event.</para></item><item><para><see cref="E:System.Windows.Forms.Control.MouseDown" /> event.</para></item><item><para><see cref="E:System.Windows.Forms.Control.DoubleClick" /> event.</para></item><item><para><see cref="E:System.Windows.Forms.Control.MouseDoubleClick" /> event.</para></item><item><para><see cref="E:System.Windows.Forms.Control.MouseUp" /> event.</para></item></list><para>For this to occur, the various events cannot be disabled in the control's class. </para><block subset="none" type="note"><para><see cref="E:System.Windows.Forms.Control.DoubleClick" /> events are logically higher-level events of a control. They may be raised by other user actions, such as shortcut key combinations.</para></block><para>For more information about handling events, see <format type="text/html"><a href="01e4f1bc-e55e-413f-98c7-6588493e5f67">Consuming Events</a></format>. </para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Occurs when the control is double clicked by the mouse.</para></summary></Docs></Member><Member MemberName="MouseDown"><MemberSignature Language="C#" Value="public event System.Windows.Forms.MouseEventHandler MouseDown;" /><MemberType>Event</MemberType><ReturnValue><ReturnType>System.Windows.Forms.MouseEventHandler</ReturnType></ReturnValue><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Mouse events occur in the following order: </para><list type="ordered"><item><para><see cref="E:System.Windows.Forms.Control.MouseEnter" /></para></item><item><para><see cref="E:System.Windows.Forms.Control.MouseMove" /></para></item><item><para><see cref="E:System.Windows.Forms.Control.MouseHover" /> / <see cref="E:System.Windows.Forms.Control.MouseDown" /> / <see cref="E:System.Windows.Forms.Control.MouseWheel" /></para></item><item><para><see cref="E:System.Windows.Forms.Control.MouseUp" /></para></item><item><para><see cref="E:System.Windows.Forms.Control.MouseLeave" /></para></item></list><block subset="none" type="note"><para>The following events are not raised for the <see cref="T:System.Windows.Forms.TabControl" /> class unless there is at least one <see cref="T:System.Windows.Forms.TabPage" /> in the <see cref="P:System.Windows.Forms.TabControl.TabPages" /> collection: <see cref="E:System.Windows.Forms.Control.Click" />, <see cref="E:System.Windows.Forms.Control.DoubleClick" />, <see cref="E:System.Windows.Forms.Control.MouseDown" />, <see cref="E:System.Windows.Forms.Control.MouseUp" />, <see cref="E:System.Windows.Forms.Control.MouseHover" />, <see cref="E:System.Windows.Forms.Control.MouseEnter" />, <see cref="E:System.Windows.Forms.Control.MouseLeave" /> and <see cref="E:System.Windows.Forms.Control.MouseMove" />. If there is at least one <see cref="T:System.Windows.Forms.TabPage" /> in the collection, and the user interacts with the tab control's header (where the <see cref="T:System.Windows.Forms.TabPage" /> names appear), the <see cref="T:System.Windows.Forms.TabControl" /> raises the appropriate event. However, if the user interaction is within the client area of the tab page, the <see cref="T:System.Windows.Forms.TabPage" /> raises the appropriate event.</para></block><para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Occurs when the mouse pointer is over the control and a mouse button is pressed.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="MouseEnter"><MemberSignature Language="C#" Value="public event EventHandler MouseEnter;" /><MemberType>Event</MemberType><ReturnValue><ReturnType>System.EventHandler</ReturnType></ReturnValue><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Mouse events occur in the following order: </para><list type="ordered"><item><para><see cref="E:System.Windows.Forms.Control.MouseEnter" /></para></item><item><para><see cref="E:System.Windows.Forms.Control.MouseMove" /></para></item><item><para><see cref="E:System.Windows.Forms.Control.MouseHover" /> / <see cref="E:System.Windows.Forms.Control.MouseDown" /> / <see cref="E:System.Windows.Forms.Control.MouseWheel" /></para></item><item><para><see cref="E:System.Windows.Forms.Control.MouseUp" /></para></item><item><para><see cref="E:System.Windows.Forms.Control.MouseLeave" /></para></item></list><block subset="none" type="note"><para>The following events are not raised for the <see cref="T:System.Windows.Forms.TabControl" /> class unless there is at least one <see cref="T:System.Windows.Forms.TabPage" /> in the <see cref="P:System.Windows.Forms.TabControl.TabPages" /> collection: <see cref="E:System.Windows.Forms.Control.Click" />, <see cref="E:System.Windows.Forms.Control.DoubleClick" />, <see cref="E:System.Windows.Forms.Control.MouseDown" />, <see cref="E:System.Windows.Forms.Control.MouseUp" />, <see cref="E:System.Windows.Forms.Control.MouseHover" />, <see cref="E:System.Windows.Forms.Control.MouseEnter" />, <see cref="E:System.Windows.Forms.Control.MouseLeave" /> and <see cref="E:System.Windows.Forms.Control.MouseMove" />. If there is at least one <see cref="T:System.Windows.Forms.TabPage" /> in the collection, and the user interacts with the tab control's header (where the <see cref="T:System.Windows.Forms.TabPage" /> names appear), the <see cref="T:System.Windows.Forms.TabControl" /> raises the appropriate event. However, if the user interaction is within the client area of the tab page, the <see cref="T:System.Windows.Forms.TabPage" /> raises the appropriate event.</para></block><para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Occurs when the mouse pointer enters the control.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="MouseHover"><MemberSignature Language="C#" Value="public event EventHandler MouseHover;" /><MemberType>Event</MemberType><ReturnValue><ReturnType>System.EventHandler</ReturnType></ReturnValue><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>A typical use of <see cref="E:System.Windows.Forms.Control.MouseHover" /> is to display a tool tip when the mouse pauses on a control within a specified area around the control (the "hover rectangle"). The pause required for this event to be raised is specified in milliseconds by the <see cref="P:System.Windows.Forms.SystemInformation.MouseHoverTime" /> property.</para><para>The <see cref="E:System.Windows.Forms.Control.MouseHover" /> event is defined and detected in connection with the <see cref="P:System.Windows.Forms.SystemInformation.MouseHoverSize" /> and <see cref="P:System.Windows.Forms.SystemInformation.MouseHoverTime" /> properties.</para><para>Mouse events occur in the following order: </para><list type="ordered"><item><para><see cref="E:System.Windows.Forms.Control.MouseEnter" /></para></item><item><para><see cref="E:System.Windows.Forms.Control.MouseMove" /></para></item><item><para><see cref="E:System.Windows.Forms.Control.MouseHover" /> / <see cref="E:System.Windows.Forms.Control.MouseDown" /> / <see cref="E:System.Windows.Forms.Control.MouseWheel" /></para></item><item><para><see cref="E:System.Windows.Forms.Control.MouseUp" /></para></item><item><para><see cref="E:System.Windows.Forms.Control.MouseLeave" /></para></item></list><block subset="none" type="note"><para>The following events are not raised for the <see cref="T:System.Windows.Forms.TabControl" /> class unless there is at least one <see cref="T:System.Windows.Forms.TabPage" /> in the <see cref="P:System.Windows.Forms.TabControl.TabPages" /> collection: <see cref="E:System.Windows.Forms.Control.Click" />, <see cref="E:System.Windows.Forms.Control.DoubleClick" />, <see cref="E:System.Windows.Forms.Control.MouseDown" />, <see cref="E:System.Windows.Forms.Control.MouseUp" />, <see cref="E:System.Windows.Forms.Control.MouseHover" />, <see cref="E:System.Windows.Forms.Control.MouseEnter" />, <see cref="E:System.Windows.Forms.Control.MouseLeave" /> and <see cref="E:System.Windows.Forms.Control.MouseMove" />. If there is at least one <see cref="T:System.Windows.Forms.TabPage" /> in the collection, and the user interacts with the tab control's header (where the <see cref="T:System.Windows.Forms.TabPage" /> names appear), the <see cref="T:System.Windows.Forms.TabControl" /> raises the appropriate event. However, if the user interaction is within the client area of the tab page, the <see cref="T:System.Windows.Forms.TabPage" /> raises the appropriate event.</para></block><para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Occurs when the mouse pointer rests on the control.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="MouseLeave"><MemberSignature Language="C#" Value="public event EventHandler MouseLeave;" /><MemberType>Event</MemberType><ReturnValue><ReturnType>System.EventHandler</ReturnType></ReturnValue><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Mouse events occur in the following order: </para><list type="ordered"><item><para><see cref="E:System.Windows.Forms.Control.MouseEnter" /></para></item><item><para><see cref="E:System.Windows.Forms.Control.MouseMove" /></para></item><item><para><see cref="E:System.Windows.Forms.Control.MouseHover" /> / <see cref="E:System.Windows.Forms.Control.MouseDown" /> / <see cref="E:System.Windows.Forms.Control.MouseWheel" /></para></item><item><para><see cref="E:System.Windows.Forms.Control.MouseUp" /></para></item><item><para><see cref="E:System.Windows.Forms.Control.MouseLeave" /></para></item></list><block subset="none" type="note"><para>The following events are not raised for the <see cref="T:System.Windows.Forms.TabControl" /> class unless there is at least one <see cref="T:System.Windows.Forms.TabPage" /> in the <see cref="P:System.Windows.Forms.TabControl.TabPages" /> collection: <see cref="E:System.Windows.Forms.Control.Click" />, <see cref="E:System.Windows.Forms.Control.DoubleClick" />, <see cref="E:System.Windows.Forms.Control.MouseDown" />, <see cref="E:System.Windows.Forms.Control.MouseUp" />, <see cref="E:System.Windows.Forms.Control.MouseHover" />, <see cref="E:System.Windows.Forms.Control.MouseEnter" />, <see cref="E:System.Windows.Forms.Control.MouseLeave" /> and <see cref="E:System.Windows.Forms.Control.MouseMove" />. If there is at least one <see cref="T:System.Windows.Forms.TabPage" /> in the collection, and the user interacts with the tab control's header (where the <see cref="T:System.Windows.Forms.TabPage" /> names appear), the <see cref="T:System.Windows.Forms.TabControl" /> raises the appropriate event. However, if the user interaction is within the client area of the tab page, the <see cref="T:System.Windows.Forms.TabPage" /> raises the appropriate event.</para></block><para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Occurs when the mouse pointer leaves the control.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="MouseMove"><MemberSignature Language="C#" Value="public event System.Windows.Forms.MouseEventHandler MouseMove;" /><MemberType>Event</MemberType><ReturnValue><ReturnType>System.Windows.Forms.MouseEventHandler</ReturnType></ReturnValue><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Typical uses of <see cref="E:System.Windows.Forms.Control.MouseMove" /> are to change the control's color or to paint a raised rectangle around the control.</para><para>Mouse events occur in the following order: </para><list type="ordered"><item><para><see cref="E:System.Windows.Forms.Control.MouseEnter" /></para></item><item><para><see cref="E:System.Windows.Forms.Control.MouseMove" /></para></item><item><para><see cref="E:System.Windows.Forms.Control.MouseHover" /> / <see cref="E:System.Windows.Forms.Control.MouseDown" /> / <see cref="E:System.Windows.Forms.Control.MouseWheel" /></para></item><item><para><see cref="E:System.Windows.Forms.Control.MouseUp" /></para></item><item><para><see cref="E:System.Windows.Forms.Control.MouseLeave" /></para></item></list><block subset="none" type="note"><para>The following events are not raised for the <see cref="T:System.Windows.Forms.TabControl" /> class unless there is at least one <see cref="T:System.Windows.Forms.TabPage" /> in the <see cref="P:System.Windows.Forms.TabControl.TabPages" /> collection: <see cref="E:System.Windows.Forms.Control.Click" />, <see cref="E:System.Windows.Forms.Control.DoubleClick" />, <see cref="E:System.Windows.Forms.Control.MouseDown" />, <see cref="E:System.Windows.Forms.Control.MouseUp" />, <see cref="E:System.Windows.Forms.Control.MouseHover" />, <see cref="E:System.Windows.Forms.Control.MouseEnter" />, <see cref="E:System.Windows.Forms.Control.MouseLeave" /> and <see cref="E:System.Windows.Forms.Control.MouseMove" />. If there is at least one <see cref="T:System.Windows.Forms.TabPage" /> in the collection, and the user interacts with the tab control's header (where the <see cref="T:System.Windows.Forms.TabPage" /> names appear), the <see cref="T:System.Windows.Forms.TabControl" /> raises the appropriate event. However, if the user interaction is within the client area of the tab page, the <see cref="T:System.Windows.Forms.TabPage" /> raises the appropriate event.</para></block><para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Occurs when the mouse pointer is moved over the control.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="MousePosition"><MemberSignature Language="C#" Value="public static System.Drawing.Point MousePosition { get; }" /><MemberType>Property</MemberType><ReturnValue><ReturnType>System.Drawing.Point</ReturnType></ReturnValue><Docs><value>To be added.</value><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The <see cref="P:System.Windows.Forms.Control.MousePosition" /> property returns a <see cref="T:System.Drawing.Point" /> that represents the mouse cursor position at the time the property was referenced. The coordinates indicate the position on the screen, not relative to the control, and are returned regardless of whether the cursor is positioned over the control. The coordinates of the upper-left corner of the screen are 0,0.</para><para>The <see cref="P:System.Windows.Forms.Control.MousePosition" /> property is identical to the <see cref="P:System.Windows.Forms.Cursor.Position" /> property.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets the position of the mouse cursor in screen coordinates.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="MouseUp"><MemberSignature Language="C#" Value="public event System.Windows.Forms.MouseEventHandler MouseUp;" /><MemberType>Event</MemberType><ReturnValue><ReturnType>System.Windows.Forms.MouseEventHandler</ReturnType></ReturnValue><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Mouse events occur in the following order: </para><list type="ordered"><item><para><see cref="E:System.Windows.Forms.Control.MouseEnter" /></para></item><item><para><see cref="E:System.Windows.Forms.Control.MouseMove" /></para></item><item><para><see cref="E:System.Windows.Forms.Control.MouseHover" /> / <see cref="E:System.Windows.Forms.Control.MouseDown" /> / <see cref="E:System.Windows.Forms.Control.MouseWheel" /></para></item><item><para><see cref="E:System.Windows.Forms.Control.MouseUp" /></para></item><item><para><see cref="E:System.Windows.Forms.Control.MouseLeave" /></para></item></list><block subset="none" type="note"><para>The following events are not raised for the <see cref="T:System.Windows.Forms.TabControl" /> class unless there is at least one <see cref="T:System.Windows.Forms.TabPage" /> in the <see cref="P:System.Windows.Forms.TabControl.TabPages" /> collection: <see cref="E:System.Windows.Forms.Control.Click" />, <see cref="E:System.Windows.Forms.Control.DoubleClick" />, <see cref="E:System.Windows.Forms.Control.MouseDown" />, <see cref="E:System.Windows.Forms.Control.MouseUp" />, <see cref="E:System.Windows.Forms.Control.MouseHover" />, <see cref="E:System.Windows.Forms.Control.MouseEnter" />, <see cref="E:System.Windows.Forms.Control.MouseLeave" /> and <see cref="E:System.Windows.Forms.Control.MouseMove" />. If there is at least one <see cref="T:System.Windows.Forms.TabPage" /> in the collection, and the user interacts with the tab control's header (where the <see cref="T:System.Windows.Forms.TabPage" /> names appear), the <see cref="T:System.Windows.Forms.TabControl" /> raises the appropriate event. However, if the user interaction is within the client area of the tab page, the <see cref="T:System.Windows.Forms.TabPage" /> raises the appropriate event.</para></block><para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Occurs when the mouse pointer is over the control and a mouse button is released.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="MouseWheel"><MemberSignature Language="C#" Value="public event System.Windows.Forms.MouseEventHandler MouseWheel;" /><MemberType>Event</MemberType><Attributes><Attribute><AttributeName>System.ComponentModel.Browsable(false)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes><ReturnValue><ReturnType>System.Windows.Forms.MouseEventHandler</ReturnType></ReturnValue><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>When handling the <see cref="E:System.Windows.Forms.Control.MouseWheel" /> event it is important to follow the user interface (UI) standards associated with the mouse wheel. The <see cref="P:System.Windows.Forms.MouseEventArgs.Delta" /> property value indicates the amount the mouse wheel has been moved. The UI should scroll when the accumulated delta is plus or minus 120. The UI should scroll the number of logical lines returned by the <see cref="P:System.Windows.Forms.SystemInformation.MouseWheelScrollLines" /> property for every delta value reached. You can also scroll more smoothly in smaller that 120 unit increments, however the ratio should remain constant, that is <see cref="P:System.Windows.Forms.SystemInformation.MouseWheelScrollLines" /> lines scrolled per 120 delta units of wheel movement.</para><para>For more information about handling mouse wheel messages, see the WM_MOUSEWHEEL message documentation in the MSDN library at http://msdn.microsoft.com/library.</para><para>Mouse events occur in the following order: </para><list type="ordered"><item><para><see cref="E:System.Windows.Forms.Control.MouseEnter" /></para></item><item><para><see cref="E:System.Windows.Forms.Control.MouseMove" /></para></item><item><para><see cref="E:System.Windows.Forms.Control.MouseHover" /> / <see cref="E:System.Windows.Forms.Control.MouseDown" /> / <see cref="E:System.Windows.Forms.Control.MouseWheel" /></para></item><item><para><see cref="E:System.Windows.Forms.Control.MouseUp" /></para></item><item><para><see cref="E:System.Windows.Forms.Control.MouseLeave" /></para></item></list><para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Occurs when the mouse wheel moves while the control has focus.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="Move"><MemberSignature Language="C#" Value="public event EventHandler Move;" /><MemberType>Event</MemberType><ReturnValue><ReturnType>System.EventHandler</ReturnType></ReturnValue><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Occurs when the control is moved.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="Name"><MemberSignature Language="C#" Value="public string Name { set; get; }" /><MemberType>Property</MemberType><Attributes><Attribute><AttributeName>System.ComponentModel.Browsable(false)</AttributeName></Attribute></Attributes><ReturnValue><ReturnType>System.String</ReturnType></ReturnValue><Docs><value>To be added.</value><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The <see cref="P:System.Windows.Forms.Control.Name" /> property can be used at run time to evaluate the object by name rather than type and programmatic name. Because the <see cref="P:System.Windows.Forms.Control.Name" /> property returns a <see cref="T:System.String" /> type, it can be evaluated in case-style logic statements (Select statement in vbprvb, switch statement in csprcs and vcprvc).</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets or sets the name of the control.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="NotifyInvalidate"><MemberSignature Language="C#" Value="protected virtual void NotifyInvalidate (System.Drawing.Rectangle invalidatedArea);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="invalidatedArea" Type="System.Drawing.Rectangle" /></Parameters><Docs><remarks>To be added.</remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Raises the <see cref="E:System.Windows.Forms.Control.Invalidated" /> event with a specified region of the control to invalidate.</para></summary><param name="invalidatedArea"><attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Drawing.Rectangle" /> representing the area to invalidate. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes></Member><Member MemberName="OnAutoSizeChanged"><MemberSignature Language="C#" Value="protected virtual void OnAutoSizeChanged (EventArgs e);" /><MemberType>Method</MemberType><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="e" Type="System.EventArgs" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="f2adaf01-1ed1-42e1-8c31-8d467e7e0ee2">Raising an Event</a></format>.</para><para>The <see cref="M:System.Windows.Forms.Control.OnAutoSizeChanged(System.EventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Raises the <see cref="E:System.Windows.Forms.Control.AutoSizeChanged" /> event. </para></summary><param name="e"><attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data.</param></Docs></Member><Member MemberName="OnBackColorChanged"><MemberSignature Language="C#" Value="protected virtual void OnBackColorChanged (EventArgs e);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="e" Type="System.EventArgs" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para><para>The <see cref="M:System.Windows.Forms.Control.OnBackColorChanged(System.EventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Raises the <see cref="E:System.Windows.Forms.Control.BackColorChanged" /> event.</para></summary><param name="e"><attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes></Member><Member MemberName="OnBackgroundImageChanged"><MemberSignature Language="C#" Value="protected virtual void OnBackgroundImageChanged (EventArgs e);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="e" Type="System.EventArgs" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="f2adaf01-1ed1-42e1-8c31-8d467e7e0ee2">Raising an Event</a></format>.</para><para>The <see cref="M:System.Windows.Forms.Control.OnBackgroundImageChanged(System.EventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Raises the <see cref="E:System.Windows.Forms.Control.BackgroundImageChanged" /> event.</para></summary><param name="e"><attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes></Member><Member MemberName="OnBackgroundImageLayoutChanged"><MemberSignature Language="C#" Value="protected virtual void OnBackgroundImageLayoutChanged (EventArgs e);" /><MemberType>Method</MemberType><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="e" Type="System.EventArgs" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="f2adaf01-1ed1-42e1-8c31-8d467e7e0ee2">Raising an Event</a></format>.</para><para>The <see cref="M:System.Windows.Forms.Control.OnBackgroundImageLayoutChanged(System.EventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Raises the <see cref="E:System.Windows.Forms.Control.BackgroundImageLayoutChanged" /> event.</para></summary><param name="e"><attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data. </param></Docs></Member><Member MemberName="OnBindingContextChanged"><MemberSignature Language="C#" Value="protected virtual void OnBindingContextChanged (EventArgs e);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="e" Type="System.EventArgs" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="f2adaf01-1ed1-42e1-8c31-8d467e7e0ee2">Raising an Event</a></format>.</para><para>The <see cref="M:System.Windows.Forms.Control.OnBindingContextChanged(System.EventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Raises the <see cref="E:System.Windows.Forms.Control.BindingContextChanged" /> event.</para></summary><param name="e"><attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes></Member><Member MemberName="OnCausesValidationChanged"><MemberSignature Language="C#" Value="protected virtual void OnCausesValidationChanged (EventArgs e);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="e" Type="System.EventArgs" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="f2adaf01-1ed1-42e1-8c31-8d467e7e0ee2">Raising an Event</a></format>.</para><para>The <see cref="M:System.Windows.Forms.Control.OnCausesValidationChanged(System.EventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Raises the <see cref="E:System.Windows.Forms.Control.CausesValidationChanged" /> event.</para></summary><param name="e"><attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes></Member><Member MemberName="OnChangeUICues"><MemberSignature Language="C#" Value="protected virtual void OnChangeUICues (System.Windows.Forms.UICuesEventArgs e);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="e" Type="System.Windows.Forms.UICuesEventArgs" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="f2adaf01-1ed1-42e1-8c31-8d467e7e0ee2">Raising an Event</a></format>.</para><para>The <see cref="M:System.Windows.Forms.Control.OnChangeUICues(System.Windows.Forms.UICuesEventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Raises the <see cref="E:System.Windows.Forms.Control.ChangeUICues" /> event.</para></summary><param name="e"><attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.UICuesEventArgs" /> that contains the event data. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes></Member><Member MemberName="OnClick"><MemberSignature Language="C#" Value="protected virtual void OnClick (EventArgs e);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="e" Type="System.EventArgs" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="f2adaf01-1ed1-42e1-8c31-8d467e7e0ee2">Raising an Event</a></format>.</para><para>The <see cref="M:System.Windows.Forms.Control.OnClick(System.EventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Raises the <see cref="E:System.Windows.Forms.Control.Click" /> event.</para></summary><param name="e"><attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes></Member><Member MemberName="OnClientSizeChanged"><MemberSignature Language="C#" Value="protected virtual void OnClientSizeChanged (EventArgs e);" /><MemberType>Method</MemberType><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="e" Type="System.EventArgs" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="f2adaf01-1ed1-42e1-8c31-8d467e7e0ee2">Raising an Event</a></format>.</para><para>The <see cref="M:System.Windows.Forms.Control.OnClientSizeChanged(System.EventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Raises the <see cref="E:System.Windows.Forms.Control.ClientSizeChanged" /> event. </para></summary><param name="e"><attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data. </param></Docs></Member><Member MemberName="OnContextMenuChanged"><MemberSignature Language="C#" Value="protected virtual void OnContextMenuChanged (EventArgs e);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="e" Type="System.EventArgs" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="f2adaf01-1ed1-42e1-8c31-8d467e7e0ee2">Raising an Event</a></format>.</para><para>The <see cref="M:System.Windows.Forms.Control.OnContextMenuChanged(System.EventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Raises the <see cref="E:System.Windows.Forms.Control.ContextMenuChanged" /> event.</para></summary><param name="e"><attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes></Member><Member MemberName="OnContextMenuStripChanged"><MemberSignature Language="C#" Value="protected virtual void OnContextMenuStripChanged (EventArgs e);" /><MemberType>Method</MemberType><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="e" Type="System.EventArgs" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="f2adaf01-1ed1-42e1-8c31-8d467e7e0ee2">Raising an Event</a></format>.</para><para>The <see cref="M:System.Windows.Forms.Control.OnContextMenuStripChanged(System.EventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Raises the <see cref="E:System.Windows.Forms.Control.ContextMenuStripChanged" /> event.</para></summary><param name="e"><attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data.</param></Docs></Member><Member MemberName="OnControlAdded"><MemberSignature Language="C#" Value="protected virtual void OnControlAdded (System.Windows.Forms.ControlEventArgs e);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="e" Type="System.Windows.Forms.ControlEventArgs" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Called when a child control is added to the control.</para><para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="f2adaf01-1ed1-42e1-8c31-8d467e7e0ee2">Raising an Event</a></format>.</para><para>The <see cref="M:System.Windows.Forms.Control.OnControlAdded(System.Windows.Forms.ControlEventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Raises the <see cref="E:System.Windows.Forms.Control.ControlAdded" /> event.</para></summary><param name="e"><attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.ControlEventArgs" /> that contains the event data. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes></Member><Member MemberName="OnControlRemoved"><MemberSignature Language="C#" Value="protected virtual void OnControlRemoved (System.Windows.Forms.ControlEventArgs e);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="e" Type="System.Windows.Forms.ControlEventArgs" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Called when a child control is removed from the control.</para><para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="f2adaf01-1ed1-42e1-8c31-8d467e7e0ee2">Raising an Event</a></format>.</para><para>The <see cref="M:System.Windows.Forms.Control.OnControlRemoved(System.Windows.Forms.ControlEventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Raises the <see cref="E:System.Windows.Forms.Control.ControlRemoved" /> event.</para></summary><param name="e"><attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.ControlEventArgs" /> that contains the event data. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes></Member><Member MemberName="OnCreateControl"><MemberSignature Language="C#" Value="protected virtual void OnCreateControl ();" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters /><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The <see cref="M:System.Windows.Forms.Control.OnCreateControl" /> method is called when the control is first created.</para><para>The <see cref="M:System.Windows.Forms.Control.OnCreateControl" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Raises the <see cref="M:System.Windows.Forms.Control.CreateControl" /> method.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes></Member><Member MemberName="OnCursorChanged"><MemberSignature Language="C#" Value="protected virtual void OnCursorChanged (EventArgs e);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="e" Type="System.EventArgs" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="f2adaf01-1ed1-42e1-8c31-8d467e7e0ee2">Raising an Event</a></format>.</para><para>The <see cref="M:System.Windows.Forms.Control.OnCursorChanged(System.EventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Raises the <see cref="E:System.Windows.Forms.Control.CursorChanged" /> event.</para></summary><param name="e"><attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes></Member><Member MemberName="OnDockChanged"><MemberSignature Language="C#" Value="protected virtual void OnDockChanged (EventArgs e);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="e" Type="System.EventArgs" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="f2adaf01-1ed1-42e1-8c31-8d467e7e0ee2">Raising an Event</a></format>.</para><para>The <see cref="M:System.Windows.Forms.Control.OnDockChanged(System.EventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Raises the <see cref="E:System.Windows.Forms.Control.DockChanged" /> event.</para></summary><param name="e"><attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes></Member><Member MemberName="OnDoubleClick"><MemberSignature Language="C#" Value="protected virtual void OnDoubleClick (EventArgs e);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="e" Type="System.EventArgs" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="f2adaf01-1ed1-42e1-8c31-8d467e7e0ee2">Raising an Event</a></format>.</para><para>The <see cref="M:System.Windows.Forms.Control.OnDoubleClick(System.EventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Raises the <see cref="E:System.Windows.Forms.Control.DoubleClick" /> event.</para></summary><param name="e"><attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes></Member><Member MemberName="OnDragDrop"><MemberSignature Language="C#" Value="protected virtual void OnDragDrop (System.Windows.Forms.DragEventArgs drgevent);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="drgevent" Type="System.Windows.Forms.DragEventArgs" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="f2adaf01-1ed1-42e1-8c31-8d467e7e0ee2">Raising an Event</a></format>.</para><para>The <see cref="M:System.Windows.Forms.Control.OnDragDrop(System.Windows.Forms.DragEventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Raises the <see cref="E:System.Windows.Forms.Control.DragDrop" /> event.</para></summary><param name="drgevent"><attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.DragEventArgs" /> that contains the event data. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes></Member><Member MemberName="OnDragEnter"><MemberSignature Language="C#" Value="protected virtual void OnDragEnter (System.Windows.Forms.DragEventArgs drgevent);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="drgevent" Type="System.Windows.Forms.DragEventArgs" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="f2adaf01-1ed1-42e1-8c31-8d467e7e0ee2">Raising an Event</a></format>.</para><para>The <see cref="M:System.Windows.Forms.Control.OnDragEnter(System.Windows.Forms.DragEventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Raises the <see cref="E:System.Windows.Forms.Control.DragEnter" /> event.</para></summary><param name="drgevent"><attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.DragEventArgs" /> that contains the event data. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes></Member><Member MemberName="OnDragLeave"><MemberSignature Language="C#" Value="protected virtual void OnDragLeave (EventArgs e);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="e" Type="System.EventArgs" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="f2adaf01-1ed1-42e1-8c31-8d467e7e0ee2">Raising an Event</a></format>.</para><para>The <see cref="M:System.Windows.Forms.Control.OnDragLeave(System.EventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Raises the <see cref="E:System.Windows.Forms.Control.DragLeave" /> event.</para></summary><param name="e"><attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes></Member><Member MemberName="OnDragOver"><MemberSignature Language="C#" Value="protected virtual void OnDragOver (System.Windows.Forms.DragEventArgs drgevent);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="drgevent" Type="System.Windows.Forms.DragEventArgs" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para><para>The <see cref="M:System.Windows.Forms.Control.OnDragOver(System.Windows.Forms.DragEventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Raises the <see cref="E:System.Windows.Forms.Control.DragOver" /> event.</para></summary><param name="drgevent"><attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.DragEventArgs" /> that contains the event data. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes></Member><Member MemberName="OnEnabledChanged"><MemberSignature Language="C#" Value="protected virtual void OnEnabledChanged (EventArgs e);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="e" Type="System.EventArgs" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para><para>The <see cref="M:System.Windows.Forms.Control.OnEnabledChanged(System.EventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Raises the <see cref="E:System.Windows.Forms.Control.EnabledChanged" /> event.</para></summary><param name="e"><attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes></Member><Member MemberName="OnEnter"><MemberSignature Language="C#" Value="protected virtual void OnEnter (EventArgs e);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="e" Type="System.EventArgs" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para><para>The <see cref="M:System.Windows.Forms.Control.OnEnter(System.EventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Raises the <see cref="E:System.Windows.Forms.Control.Enter" /> event.</para></summary><param name="e"><attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes></Member><Member MemberName="OnFontChanged"><MemberSignature Language="C#" Value="protected virtual void OnFontChanged (EventArgs e);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="e" Type="System.EventArgs" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para><para>The <see cref="M:System.Windows.Forms.Control.OnFontChanged(System.EventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Raises the <see cref="E:System.Windows.Forms.Control.FontChanged" /> event.</para></summary><param name="e"><attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes></Member><Member MemberName="OnForeColorChanged"><MemberSignature Language="C#" Value="protected virtual void OnForeColorChanged (EventArgs e);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="e" Type="System.EventArgs" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para><para>The <see cref="M:System.Windows.Forms.Control.OnForeColorChanged(System.EventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Raises the <see cref="E:System.Windows.Forms.Control.ForeColorChanged" /> event.</para></summary><param name="e"><attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes></Member><Member MemberName="OnGiveFeedback"><MemberSignature Language="C#" Value="protected virtual void OnGiveFeedback (System.Windows.Forms.GiveFeedbackEventArgs gfbevent);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="gfbevent" Type="System.Windows.Forms.GiveFeedbackEventArgs" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para><para>The <see cref="M:System.Windows.Forms.Control.OnGiveFeedback(System.Windows.Forms.GiveFeedbackEventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Raises the <see cref="E:System.Windows.Forms.Control.GiveFeedback" /> event.</para></summary><param name="gfbevent"><attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.GiveFeedbackEventArgs" /> that contains the event data. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes></Member><Member MemberName="OnGotFocus"><MemberSignature Language="C#" Value="protected virtual void OnGotFocus (EventArgs e);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="e" Type="System.EventArgs" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para><para>The <see cref="M:System.Windows.Forms.Control.OnGotFocus(System.EventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Raises the <see cref="E:System.Windows.Forms.Control.GotFocus" /> event.</para></summary><param name="e"><attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes></Member><Member MemberName="OnHandleCreated"><MemberSignature Language="C#" Value="protected virtual void OnHandleCreated (EventArgs e);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="e" Type="System.EventArgs" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para><para>The <see cref="M:System.Windows.Forms.Control.OnHandleCreated(System.EventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Raises the <see cref="E:System.Windows.Forms.Control.HandleCreated" /> event.</para></summary><param name="e"><attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes></Member><Member MemberName="OnHandleDestroyed"><MemberSignature Language="C#" Value="protected virtual void OnHandleDestroyed (EventArgs e);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="e" Type="System.EventArgs" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para><para>The <see cref="M:System.Windows.Forms.Control.OnHandleDestroyed(System.EventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Raises the <see cref="E:System.Windows.Forms.Control.HandleDestroyed" /> event.</para></summary><param name="e"><attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes></Member><Member MemberName="OnHelpRequested"><MemberSignature Language="C#" Value="protected virtual void OnHelpRequested (System.Windows.Forms.HelpEventArgs hevent);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="hevent" Type="System.Windows.Forms.HelpEventArgs" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para><para>The <see cref="M:System.Windows.Forms.Control.OnHelpRequested(System.Windows.Forms.HelpEventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Raises the <see cref="E:System.Windows.Forms.Control.HelpRequested" /> event.</para></summary><param name="hevent"><attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.HelpEventArgs" /> that contains the event data. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes></Member><Member MemberName="OnImeModeChanged"><MemberSignature Language="C#" Value="protected virtual void OnImeModeChanged (EventArgs e);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="e" Type="System.EventArgs" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para><para>The <see cref="M:System.Windows.Forms.Control.OnImeModeChanged(System.EventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Raises the <see cref="E:System.Windows.Forms.Control.ImeModeChanged" /> event.</para></summary><param name="e"><attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="OnInvalidated"><MemberSignature Language="C#" Value="protected virtual void OnInvalidated (System.Windows.Forms.InvalidateEventArgs e);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="e" Type="System.Windows.Forms.InvalidateEventArgs" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para><para>The <see cref="M:System.Windows.Forms.Control.OnInvalidated(System.Windows.Forms.InvalidateEventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Raises the <see cref="E:System.Windows.Forms.Control.Invalidated" /> event.</para></summary><param name="e"><attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.Windows.Forms.InvalidateEventArgs" /> that contains the event data. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes></Member><Member MemberName="OnKeyDown"><MemberSignature Language="C#" Value="protected virtual void OnKeyDown (System.Windows.Forms.KeyEventArgs e);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="e" Type="System.Windows.Forms.KeyEventArgs" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para><para>The <see cref="M:System.Windows.Forms.Control.OnKeyDown(System.Windows.Forms.KeyEventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Raises the <see cref="E:System.Windows.Forms.Control.KeyDown" /> event.</para></summary><param name="e"><attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.KeyEventArgs" /> that contains the event data. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes></Member><Member MemberName="OnKeyPress"><MemberSignature Language="C#" Value="protected virtual void OnKeyPress (System.Windows.Forms.KeyPressEventArgs e);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="e" Type="System.Windows.Forms.KeyPressEventArgs" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para><para>The <see cref="M:System.Windows.Forms.Control.OnKeyPress(System.Windows.Forms.KeyPressEventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Raises the <see cref="E:System.Windows.Forms.Control.KeyPress" /> event.</para></summary><param name="e"><attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.KeyPressEventArgs" /> that contains the event data. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes></Member><Member MemberName="OnKeyUp"><MemberSignature Language="C#" Value="protected virtual void OnKeyUp (System.Windows.Forms.KeyEventArgs e);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="e" Type="System.Windows.Forms.KeyEventArgs" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para><para>The <see cref="M:System.Windows.Forms.Control.OnKeyUp(System.Windows.Forms.KeyEventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Raises the <see cref="E:System.Windows.Forms.Control.KeyUp" /> event.</para></summary><param name="e"><attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.KeyEventArgs" /> that contains the event data. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes></Member><Member MemberName="OnLayout"><MemberSignature Language="C#" Value="protected virtual void OnLayout (System.Windows.Forms.LayoutEventArgs levent);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="levent" Type="System.Windows.Forms.LayoutEventArgs" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para><para>The <see cref="M:System.Windows.Forms.Control.OnLayout(System.Windows.Forms.LayoutEventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Raises the <see cref="E:System.Windows.Forms.Control.Layout" /> event.</para></summary><param name="levent"><attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.LayoutEventArgs" /> that contains the event data. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes></Member><Member MemberName="OnLeave"><MemberSignature Language="C#" Value="protected virtual void OnLeave (EventArgs e);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="e" Type="System.EventArgs" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para><para>The <see cref="M:System.Windows.Forms.Control.OnLeave(System.EventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Raises the <see cref="E:System.Windows.Forms.Control.Leave" /> event.</para></summary><param name="e"><attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes></Member><Member MemberName="OnLocationChanged"><MemberSignature Language="C#" Value="protected virtual void OnLocationChanged (EventArgs e);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="e" Type="System.EventArgs" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para><para>The <see cref="M:System.Windows.Forms.Control.OnLocationChanged(System.EventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Raises the <see cref="E:System.Windows.Forms.Control.LocationChanged" /> event.</para></summary><param name="e"><attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes></Member><Member MemberName="OnLostFocus"><MemberSignature Language="C#" Value="protected virtual void OnLostFocus (EventArgs e);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="e" Type="System.EventArgs" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para><para>The <see cref="M:System.Windows.Forms.Control.OnLostFocus(System.EventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Raises the <see cref="E:System.Windows.Forms.Control.LostFocus" /> event.</para></summary><param name="e"><attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes></Member><Member MemberName="OnMarginChanged"><MemberSignature Language="C#" Value="protected virtual void OnMarginChanged (EventArgs e);" /><MemberType>Method</MemberType><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="e" Type="System.EventArgs" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="f2adaf01-1ed1-42e1-8c31-8d467e7e0ee2">Raising an Event</a></format>.</para><para>The <see cref="M:System.Windows.Forms.Control.OnMarginChanged(System.EventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Raises the <see cref="E:System.Windows.Forms.Control.MarginChanged" /> event. </para></summary><param name="e"><attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.EventArgs" /> that contains the event data.</param></Docs></Member><Member MemberName="OnMouseCaptureChanged"><MemberSignature Language="C#" Value="protected virtual void OnMouseCaptureChanged (EventArgs e);" /><MemberType>Method</MemberType><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="e" Type="System.EventArgs" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para><para>The <see cref="M:System.Windows.Forms.Control.OnMouseCaptureChanged(System.EventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Raises the <see cref="E:System.Windows.Forms.Control.MouseCaptureChanged" /> event.</para></summary><param name="e"><attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data. </param></Docs></Member><Member MemberName="OnMouseClick"><MemberSignature Language="C#" Value="protected virtual void OnMouseClick (System.Windows.Forms.MouseEventArgs e);" /><MemberType>Method</MemberType><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="e" Type="System.Windows.Forms.MouseEventArgs" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para><para>The <see cref="M:System.Windows.Forms.Control.OnMouseClick(System.Windows.Forms.MouseEventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Raises the <see cref="E:System.Windows.Forms.Control.MouseClick" /> event.</para></summary><param name="e"><attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.Windows.Forms.MouseEventArgs" /> that contains the event data. </param></Docs></Member><Member MemberName="OnMouseDoubleClick"><MemberSignature Language="C#" Value="protected virtual void OnMouseDoubleClick (System.Windows.Forms.MouseEventArgs e);" /><MemberType>Method</MemberType><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="e" Type="System.Windows.Forms.MouseEventArgs" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para><para>The <see cref="M:System.Windows.Forms.Control.OnMouseDoubleClick(System.Windows.Forms.MouseEventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Raises the <see cref="E:System.Windows.Forms.Control.MouseDoubleClick" /> event.</para></summary><param name="e"><attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.Windows.Forms.MouseEventArgs" /> that contains the event data. </param></Docs></Member><Member MemberName="OnMouseDown"><MemberSignature Language="C#" Value="protected virtual void OnMouseDown (System.Windows.Forms.MouseEventArgs e);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="e" Type="System.Windows.Forms.MouseEventArgs" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para><para>The <see cref="M:System.Windows.Forms.Control.OnMouseDown(System.Windows.Forms.MouseEventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Raises the <see cref="E:System.Windows.Forms.Control.MouseDown" /> event.</para></summary><param name="e"><attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.MouseEventArgs" /> that contains the event data. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes></Member><Member MemberName="OnMouseEnter"><MemberSignature Language="C#" Value="protected virtual void OnMouseEnter (EventArgs e);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="e" Type="System.EventArgs" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para><para>The <see cref="M:System.Windows.Forms.Control.OnMouseEnter(System.EventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Raises the <see cref="E:System.Windows.Forms.Control.MouseEnter" /> event.</para></summary><param name="e"><attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes></Member><Member MemberName="OnMouseHover"><MemberSignature Language="C#" Value="protected virtual void OnMouseHover (EventArgs e);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="e" Type="System.EventArgs" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para><para>The <see cref="M:System.Windows.Forms.Control.OnMouseHover(System.EventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Raises the <see cref="E:System.Windows.Forms.Control.MouseHover" /> event.</para></summary><param name="e"><attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes></Member><Member MemberName="OnMouseLeave"><MemberSignature Language="C#" Value="protected virtual void OnMouseLeave (EventArgs e);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="e" Type="System.EventArgs" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para><para>The <see cref="M:System.Windows.Forms.Control.OnMouseLeave(System.EventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Raises the <see cref="E:System.Windows.Forms.Control.MouseLeave" /> event.</para></summary><param name="e"><attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes></Member><Member MemberName="OnMouseMove"><MemberSignature Language="C#" Value="protected virtual void OnMouseMove (System.Windows.Forms.MouseEventArgs e);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="e" Type="System.Windows.Forms.MouseEventArgs" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para><para>The <see cref="M:System.Windows.Forms.Control.OnMouseMove(System.Windows.Forms.MouseEventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Raises the <see cref="E:System.Windows.Forms.Control.MouseMove" /> event.</para></summary><param name="e"><attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.MouseEventArgs" /> that contains the event data. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes></Member><Member MemberName="OnMouseUp"><MemberSignature Language="C#" Value="protected virtual void OnMouseUp (System.Windows.Forms.MouseEventArgs e);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="e" Type="System.Windows.Forms.MouseEventArgs" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para><para>The <see cref="M:System.Windows.Forms.Control.OnMouseUp(System.Windows.Forms.MouseEventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Raises the <see cref="E:System.Windows.Forms.Control.MouseUp" /> event.</para></summary><param name="e"><attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.MouseEventArgs" /> that contains the event data. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes></Member><Member MemberName="OnMouseWheel"><MemberSignature Language="C#" Value="protected virtual void OnMouseWheel (System.Windows.Forms.MouseEventArgs e);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="e" Type="System.Windows.Forms.MouseEventArgs" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para><para>The <see cref="M:System.Windows.Forms.Control.OnMouseWheel(System.Windows.Forms.MouseEventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Raises the <see cref="E:System.Windows.Forms.Control.MouseWheel" /> event.</para></summary><param name="e"><attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.MouseEventArgs" /> that contains the event data. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes></Member><Member MemberName="OnMove"><MemberSignature Language="C#" Value="protected virtual void OnMove (EventArgs e);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="e" Type="System.EventArgs" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para><para>The <see cref="M:System.Windows.Forms.Control.OnMove(System.EventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Raises the <see cref="E:System.Windows.Forms.Control.Move" /> event.</para></summary><param name="e"><attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes></Member><Member MemberName="OnNotifyMessage"><MemberSignature Language="C#" Value="protected virtual void OnNotifyMessage (System.Windows.Forms.Message m);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="m" Type="System.Windows.Forms.Message" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The <see cref="M:System.Windows.Forms.Control.OnNotifyMessage(System.Windows.Forms.Message)" /> method is called if the control's EnableNotifyMessage style bit is set in <see cref="T:System.Windows.Forms.ControlStyles" />. The EnableNotifyMessage style in <see cref="T:System.Windows.Forms.ControlStyles" /> enables the control to be notified when the <see cref="M:System.Windows.Forms.Control.WndProc(System.Windows.Forms.Message@)" /> method receives a Windows message. With this method, semi-trusted controls can listen for Windows messages without enabling them to modify the message.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Notifies the control of Windows messages.</para></summary><param name="m"><attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.Message" /> that represents the Windows message. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes></Member><Member MemberName="OnPaddingChanged"><MemberSignature Language="C#" Value="protected virtual void OnPaddingChanged (EventArgs e);" /><MemberType>Method</MemberType><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="e" Type="System.EventArgs" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="f2adaf01-1ed1-42e1-8c31-8d467e7e0ee2">Raising an Event</a></format>.</para><para>The <see cref="M:System.Windows.Forms.Control.OnPaddingChanged(System.EventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Raises the <see cref="E:System.Windows.Forms.Control.PaddingChanged" /> event.</para></summary><param name="e"><attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.EventArgs" /> that contains the event data.</param></Docs></Member><Member MemberName="OnPaint"><MemberSignature Language="C#" Value="protected virtual void OnPaint (System.Windows.Forms.PaintEventArgs e);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="e" Type="System.Windows.Forms.PaintEventArgs" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para><para>The <see cref="M:System.Windows.Forms.Control.OnPaint(System.Windows.Forms.PaintEventArgs)" /> method also enables derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Raises the <see cref="E:System.Windows.Forms.Control.Paint" /> event.</para></summary><param name="e"><attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.PaintEventArgs" /> that contains the event data. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes></Member><Member MemberName="OnPaintBackground"><MemberSignature Language="C#" Value="protected virtual void OnPaintBackground (System.Windows.Forms.PaintEventArgs pevent);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="pevent" Type="System.Windows.Forms.PaintEventArgs" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The <see cref="M:System.Windows.Forms.Control.OnPaintBackground(System.Windows.Forms.PaintEventArgs)" /> method enables derived classes to handle Windows background erase requests.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Paints the background of the control.</para></summary><param name="pevent"><attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.PaintEventArgs" /> that contains information about the control to paint. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes></Member><Member MemberName="OnParentBackColorChanged"><MemberSignature Language="C#" Value="protected virtual void OnParentBackColorChanged (EventArgs e);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="e" Type="System.EventArgs" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para><para>The <see cref="M:System.Windows.Forms.Control.OnParentBackColorChanged(System.EventArgs)" /> method also enables derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Raises the <see cref="E:System.Windows.Forms.Control.BackColorChanged" /> event when the <see cref="P:System.Windows.Forms.Control.BackColor" /> property value of the control's container changes.</para></summary><param name="e"><attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes></Member><Member MemberName="OnParentBackgroundImageChanged"><MemberSignature Language="C#" Value="protected virtual void OnParentBackgroundImageChanged (EventArgs e);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="e" Type="System.EventArgs" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para><para>The <see cref="M:System.Windows.Forms.Control.OnParentBackgroundImageChanged(System.EventArgs)" /> method also enables derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Raises the <see cref="E:System.Windows.Forms.Control.BackgroundImageChanged" /> event when the <see cref="P:System.Windows.Forms.Control.BackgroundImage" /> property value of the control's container changes.</para></summary><param name="e"><attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes></Member><Member MemberName="OnParentBindingContextChanged"><MemberSignature Language="C#" Value="protected virtual void OnParentBindingContextChanged (EventArgs e);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="e" Type="System.EventArgs" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para><para>The <see cref="M:System.Windows.Forms.Control.OnParentBindingContextChanged(System.EventArgs)" /> method also enables derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Raises the <see cref="E:System.Windows.Forms.Control.BindingContextChanged" /> event when the <see cref="P:System.Windows.Forms.Control.BindingContext" /> property value of the control's container changes.</para></summary><param name="e"><attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes></Member><Member MemberName="OnParentChanged"><MemberSignature Language="C#" Value="protected virtual void OnParentChanged (EventArgs e);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="e" Type="System.EventArgs" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para><para>The <see cref="M:System.Windows.Forms.Control.OnParentChanged(System.EventArgs)" /> method also enables derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Raises the <see cref="E:System.Windows.Forms.Control.ParentChanged" /> event.</para></summary><param name="e"><attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes></Member><Member MemberName="OnParentCursorChanged"><MemberSignature Language="C#" Value="protected virtual void OnParentCursorChanged (EventArgs e);" /><MemberType>Method</MemberType><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="e" Type="System.EventArgs" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="f2adaf01-1ed1-42e1-8c31-8d467e7e0ee2">Raising an Event</a></format>.</para><para>The <see cref="M:System.Windows.Forms.Control.OnParentCursorChanged(System.EventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Raises the <see cref="E:System.Windows.Forms.Control.CursorChanged" /> event.</para></summary><param name="e"><attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data.</param></Docs></Member><Member MemberName="OnParentEnabledChanged"><MemberSignature Language="C#" Value="protected virtual void OnParentEnabledChanged (EventArgs e);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="e" Type="System.EventArgs" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para><para>The <see cref="M:System.Windows.Forms.Control.OnParentEnabledChanged(System.EventArgs)" /> method also enables derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Raises the <see cref="E:System.Windows.Forms.Control.EnabledChanged" /> event when the <see cref="P:System.Windows.Forms.Control.Enabled" /> property value of the control's container changes.</para></summary><param name="e"><attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes></Member><Member MemberName="OnParentFontChanged"><MemberSignature Language="C#" Value="protected virtual void OnParentFontChanged (EventArgs e);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="e" Type="System.EventArgs" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para><para>The <see cref="M:System.Windows.Forms.Control.OnParentFontChanged(System.EventArgs)" /> method also enables derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Raises the <see cref="E:System.Windows.Forms.Control.FontChanged" /> event when the <see cref="P:System.Windows.Forms.Control.Font" /> property value of the control's container changes.</para></summary><param name="e"><attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes></Member><Member MemberName="OnParentForeColorChanged"><MemberSignature Language="C#" Value="protected virtual void OnParentForeColorChanged (EventArgs e);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="e" Type="System.EventArgs" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para><para>The <see cref="M:System.Windows.Forms.Control.OnParentForeColorChanged(System.EventArgs)" /> method also enables derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Raises the <see cref="E:System.Windows.Forms.Control.ForeColorChanged" /> event when the <see cref="P:System.Windows.Forms.Control.ForeColor" /> property value of the control's container changes.</para></summary><param name="e"><attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes></Member><Member MemberName="OnParentRightToLeftChanged"><MemberSignature Language="C#" Value="protected virtual void OnParentRightToLeftChanged (EventArgs e);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="e" Type="System.EventArgs" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para><para>The <see cref="M:System.Windows.Forms.Control.OnParentRightToLeftChanged(System.EventArgs)" /> method also enables derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Raises the <see cref="E:System.Windows.Forms.Control.RightToLeftChanged" /> event when the <see cref="P:System.Windows.Forms.Control.RightToLeft" /> property value of the control's container changes.</para></summary><param name="e"><attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes></Member><Member MemberName="OnParentVisibleChanged"><MemberSignature Language="C#" Value="protected virtual void OnParentVisibleChanged (EventArgs e);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="e" Type="System.EventArgs" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para><para>The <see cref="M:System.Windows.Forms.Control.OnParentVisibleChanged(System.EventArgs)" /> method also enables derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Raises the <see cref="E:System.Windows.Forms.Control.VisibleChanged" /> event when the <see cref="P:System.Windows.Forms.Control.Visible" /> property value of the control's container changes.</para></summary><param name="e"><attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes></Member><Member MemberName="OnPreviewKeyDown"><MemberSignature Language="C#" Value="protected virtual void OnPreviewKeyDown (System.Windows.Forms.PreviewKeyDownEventArgs e);" /><MemberType>Method</MemberType><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="e" Type="System.Windows.Forms.PreviewKeyDownEventArgs" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="f2adaf01-1ed1-42e1-8c31-8d467e7e0ee2">Raising an Event</a></format>.</para><para>The <see cref="M:System.Windows.Forms.Control.OnPreviewKeyDown(System.Windows.Forms.PreviewKeyDownEventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Raises the <see cref="E:System.Windows.Forms.Control.PreviewKeyDown" /> event.</para></summary><param name="e"><attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.PreviewKeyDownEventArgs" /> that contains the event data.</param></Docs></Member><Member MemberName="OnPrint"><MemberSignature Language="C#" Value="protected virtual void OnPrint (System.Windows.Forms.PaintEventArgs e);" /><MemberType>Method</MemberType><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="e" Type="System.Windows.Forms.PaintEventArgs" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>If the UserPaint bit of the <see cref="T:System.Windows.Forms.ControlStyles" /> is set, you can override <see cref="M:System.Windows.Forms.Control.OnPrint(System.Windows.Forms.PaintEventArgs)" /> to do layered painting. See <see cref="M:System.Windows.Forms.Control.SetStyle(System.Windows.Forms.ControlStyles,System.Boolean)" /> for more information.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Raises the <see cref="E:System.Windows.Forms.Control.Paint" /> event. </para></summary><param name="e"><attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.PaintEventArgs" /> that contains the event data.</param></Docs></Member><Member MemberName="OnQueryContinueDrag"><MemberSignature Language="C#" Value="protected virtual void OnQueryContinueDrag (System.Windows.Forms.QueryContinueDragEventArgs qcdevent);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="qcdevent" Type="System.Windows.Forms.QueryContinueDragEventArgs" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>After dragging has begun, this method is called repeatedly by the dnprdnshort until the drag operation is either canceled or completed.</para><block subset="none" type="note"><para>Override this method if you want to change the point at which dragging is canceled or at which a drop occurs.</para></block><para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para><para>The <see cref="M:System.Windows.Forms.Control.OnQueryContinueDrag(System.Windows.Forms.QueryContinueDragEventArgs)" /> method also enables derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Raises the <see cref="E:System.Windows.Forms.Control.QueryContinueDrag" /> event.</para></summary><param name="qcdevent"><attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.QueryContinueDragEventArgs" /> that contains the event data. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes></Member><Member MemberName="OnRegionChanged"><MemberSignature Language="C#" Value="protected virtual void OnRegionChanged (EventArgs e);" /><MemberType>Method</MemberType><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="e" Type="System.EventArgs" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="f2adaf01-1ed1-42e1-8c31-8d467e7e0ee2">Raising an Event</a></format>.</para><para>The <see cref="M:System.Windows.Forms.Control.OnRegionChanged(System.EventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Raises the <see cref="E:System.Windows.Forms.Control.RegionChanged" /> event. </para></summary><param name="e"><attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data.</param></Docs></Member><Member MemberName="OnResize"><MemberSignature Language="C#" Value="protected virtual void OnResize (EventArgs e);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="e" Type="System.EventArgs" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para><para>The <see cref="M:System.Windows.Forms.Control.OnResize(System.EventArgs)" /> method also enables derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Raises the <see cref="E:System.Windows.Forms.Control.Resize" /> event.</para></summary><param name="e"><attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes></Member><Member MemberName="OnRightToLeftChanged"><MemberSignature Language="C#" Value="protected virtual void OnRightToLeftChanged (EventArgs e);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="e" Type="System.EventArgs" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para><para>The <see cref="M:System.Windows.Forms.Control.OnRightToLeftChanged(System.EventArgs)" /> method also enables derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Raises the <see cref="E:System.Windows.Forms.Control.RightToLeftChanged" /> event.</para></summary><param name="e"><attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes></Member><Member MemberName="OnSizeChanged"><MemberSignature Language="C#" Value="protected virtual void OnSizeChanged (EventArgs e);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="e" Type="System.EventArgs" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para><para>The <see cref="M:System.Windows.Forms.Control.OnSizeChanged(System.EventArgs)" /> method also enables derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Raises the <see cref="E:System.Windows.Forms.Control.SizeChanged" /> event.</para></summary><param name="e"><attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes></Member><Member MemberName="OnStyleChanged"><MemberSignature Language="C#" Value="protected virtual void OnStyleChanged (EventArgs e);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="e" Type="System.EventArgs" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para><para>The <see cref="M:System.Windows.Forms.Control.OnStyleChanged(System.EventArgs)" /> method also enables derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Raises the <see cref="E:System.Windows.Forms.Control.StyleChanged" /> event.</para></summary><param name="e"><attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes></Member><Member MemberName="OnSystemColorsChanged"><MemberSignature Language="C#" Value="protected virtual void OnSystemColorsChanged (EventArgs e);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="e" Type="System.EventArgs" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para><para>The <see cref="M:System.Windows.Forms.Control.OnSystemColorsChanged(System.EventArgs)" /> method also enables derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Raises the <see cref="E:System.Windows.Forms.Control.SystemColorsChanged" /> event.</para></summary><param name="e"><attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes></Member><Member MemberName="OnTabIndexChanged"><MemberSignature Language="C#" Value="protected virtual void OnTabIndexChanged (EventArgs e);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="e" Type="System.EventArgs" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para><para>The <see cref="M:System.Windows.Forms.Control.OnTabIndexChanged(System.EventArgs)" /> method also enables derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Raises the <see cref="E:System.Windows.Forms.Control.TabIndexChanged" /> event.</para></summary><param name="e"><attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes></Member><Member MemberName="OnTabStopChanged"><MemberSignature Language="C#" Value="protected virtual void OnTabStopChanged (EventArgs e);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="e" Type="System.EventArgs" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para><para>The <see cref="M:System.Windows.Forms.Control.OnTabStopChanged(System.EventArgs)" /> method also enables derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Raises the <see cref="E:System.Windows.Forms.Control.TabStopChanged" /> event.</para></summary><param name="e"><attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes></Member><Member MemberName="OnTextChanged"><MemberSignature Language="C#" Value="protected virtual void OnTextChanged (EventArgs e);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="e" Type="System.EventArgs" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para><para>The <see cref="M:System.Windows.Forms.Control.OnTextChanged(System.EventArgs)" /> method also enables derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Raises the <see cref="E:System.Windows.Forms.Control.TextChanged" /> event.</para></summary><param name="e"><attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes></Member><Member MemberName="OnValidated"><MemberSignature Language="C#" Value="protected virtual void OnValidated (EventArgs e);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="e" Type="System.EventArgs" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para><para>The <see cref="M:System.Windows.Forms.Control.OnValidated(System.EventArgs)" /> method also enables derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Raises the <see cref="E:System.Windows.Forms.Control.Validated" /> event.</para></summary><param name="e"><attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes></Member><Member MemberName="OnValidating"><MemberSignature Language="C#" Value="protected virtual void OnValidating (System.ComponentModel.CancelEventArgs e);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="e" Type="System.ComponentModel.CancelEventArgs" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para><para>The <see cref="M:System.Windows.Forms.Control.OnValidating(System.ComponentModel.CancelEventArgs)" /> method also enables derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Raises the <see cref="E:System.Windows.Forms.Control.Validating" /> event.</para></summary><param name="e"><attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.ComponentModel.CancelEventArgs" /> that contains the event data. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes></Member><Member MemberName="OnVisibleChanged"><MemberSignature Language="C#" Value="protected virtual void OnVisibleChanged (EventArgs e);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="e" Type="System.EventArgs" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para><para>The <see cref="M:System.Windows.Forms.Control.OnVisibleChanged(System.EventArgs)" /> method also enables derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Raises the <see cref="E:System.Windows.Forms.Control.VisibleChanged" /> event.</para></summary><param name="e"><attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes></Member><Member MemberName="Padding"><MemberSignature Language="C#" Value="public System.Windows.Forms.Padding Padding { set; get; }" /><MemberType>Property</MemberType><Attributes><Attribute><AttributeName>System.ComponentModel.Localizable(true)</AttributeName></Attribute></Attributes><ReturnValue><ReturnType>System.Windows.Forms.Padding</ReturnType></ReturnValue><Docs><value>To be added.</value><since version=".NET 2.0" /><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>For containers such as <see cref="T:System.Windows.Forms.GroupBox" /> and <see cref="T:System.Windows.Forms.TabControl" />, the <see cref="P:System.Windows.Forms.Control.Padding" /> property gets or sets their respective <see cref="P:System.Windows.Forms.Control.DisplayRectangle" /> properties. The <see cref="P:System.Windows.Forms.ScrollableControl.DockPadding" /> property is equal to its <see cref="P:System.Windows.Forms.Control.Padding" /> property.</para><para>Controls receive default values for <see cref="P:System.Windows.Forms.Control.Padding" /> that are reasonably close to Windows user interface guidelines. Some adjustments might still be necessary for particular applications.</para><para>All controls that implement <see cref="M:System.Windows.Forms.Control.GetPreferredSize(System.Drawing.Size)" /> are enlarged by the amount in <see cref="P:System.Windows.Forms.Control.Padding" /> when <see cref="P:System.Windows.Forms.Control.AutoSize" /> is true.</para><para>The following controls do not use <see cref="P:System.Windows.Forms.Control.Padding" />:</para><list type="bullet"><item><para>Controls that do not implement <see cref="P:System.Windows.Forms.Control.AutoSize" /> through <see cref="M:System.Windows.Forms.Control.GetPreferredSize(System.Drawing.Size)" /></para></item><item><para>Custom controls that directly inherit from <see cref="T:System.Windows.Forms.Control" /></para></item><item><para><see cref="T:System.Windows.Forms.AxHost" /></para></item><item><para><see cref="T:System.Windows.Forms.ComboBox" /></para></item><item><para><see cref="T:System.Windows.Forms.DataGridView" /></para></item><item><para><see cref="T:System.Windows.Forms.DateTimePicker" /></para></item><item><para><see cref="T:System.Windows.Forms.HScrollBar" /></para></item><item><para><see cref="T:System.Windows.Forms.ListView" /></para></item><item><para><see cref="T:System.Windows.Forms.MaskedTextBox" /></para></item><item><para><see cref="T:System.Windows.Forms.MonthCalendar" /></para></item><item><para><see cref="T:System.Windows.Forms.ProgressBar" /></para></item><item><para><see cref="T:System.Windows.Forms.PropertyGrid" /></para></item><item><para><see cref="T:System.Windows.Forms.RichTextBox" /></para></item><item><para><see cref="T:System.Windows.Forms.SplitContainer" /></para></item><item><para><see cref="T:System.Windows.Forms.TextBox" /></para></item><item><para><see cref="T:System.Windows.Forms.TextBoxBase" /></para></item><item><para><see cref="T:System.Windows.Forms.TreeView" /></para></item><item><para><see cref="T:System.Windows.Forms.VScrollBar" /></para></item><item><para><see cref="T:System.Windows.Forms.WebBrowser" /></para></item></list></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets or sets padding within the control.</para></summary></Docs><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="PaddingChanged"><MemberSignature Language="C#" Value="public event EventHandler PaddingChanged;" /><MemberType>Event</MemberType><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.EventHandler</ReturnType></ReturnValue><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>For more information about handling events, see <format type="text/html"><a href="01e4f1bc-e55e-413f-98c7-6588493e5f67">Consuming Events</a></format>.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Occurs when the control's padding changes.</para></summary></Docs></Member><Member MemberName="Paint"><MemberSignature Language="C#" Value="public event System.Windows.Forms.PaintEventHandler Paint;" /><MemberType>Event</MemberType><ReturnValue><ReturnType>System.Windows.Forms.PaintEventHandler</ReturnType></ReturnValue><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The <see cref="E:System.Windows.Forms.Control.Paint" /> event is raised when the control is redrawn. It passes an instance of <see cref="T:System.Windows.Forms.PaintEventArgs" /> to the method(s) that handles the <see cref="E:System.Windows.Forms.Control.Paint" /> event.</para><para>When creating a new custom control or an inherited control with a different visual appearance, you must provide code to render the control by overriding the <see cref="M:System.Windows.Forms.Control.OnPaint(System.Windows.Forms.PaintEventArgs)" /> method. For more information, see <format type="text/html"><a href="e9ca2723-0107-4540-bb21-4f5ffb4a9906">Overriding the OnPaint Method</a></format> and <format type="text/html"><a href="a09dbf76-0966-4cbf-a66a-2083ba98e068">Custom Control Painting and Rendering</a></format>.</para><para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Occurs when the control is redrawn.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="Parent"><MemberSignature Language="C#" Value="public System.Windows.Forms.Control Parent { set; get; }" /><MemberType>Property</MemberType><Attributes><Attribute><AttributeName>System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Hidden)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.Browsable(false)</AttributeName></Attribute></Attributes><ReturnValue><ReturnType>System.Windows.Forms.Control</ReturnType></ReturnValue><Docs><value>To be added.</value><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Setting the <see cref="P:System.Windows.Forms.Control.Parent" /> property value to null removes the control from the <see cref="T:System.Windows.Forms.Control.ControlCollection" /> of its current parent control.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets or sets the parent container of the control.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="ParentChanged"><MemberSignature Language="C#" Value="public event EventHandler ParentChanged;" /><MemberType>Event</MemberType><ReturnValue><ReturnType>System.EventHandler</ReturnType></ReturnValue><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>This event is raised if the <see cref="P:System.Windows.Forms.Control.Parent" /> property is changed by either a programmatic modification or user interaction.</para><para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Occurs when the <see cref="P:System.Windows.Forms.Control.Parent" /> property value changes.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="PerformLayout"><MemberSignature Language="C#" Value="public void PerformLayout ();" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters /><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>If the <see cref="M:System.Windows.Forms.Control.SuspendLayout" /> method was called before calling the <see cref="M:System.Windows.Forms.Control.PerformLayout" /> method, the <see cref="E:System.Windows.Forms.Control.Layout" /> event is suppressed.</para><para>The <see cref="P:System.Windows.Forms.LayoutEventArgs.AffectedControl" /> and <see cref="P:System.Windows.Forms.LayoutEventArgs.AffectedProperty" /> properties of the <see cref="T:System.Windows.Forms.LayoutEventArgs" /> created are set to null if no values were provided when the <see cref="M:System.Windows.Forms.Control.PerformLayout" /> method was called.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Forces the control to apply layout logic to all its child controls.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes></Member><Member MemberName="PerformLayout"><MemberSignature Language="C#" Value="public void PerformLayout (System.Windows.Forms.Control affectedControl, string affectedProperty);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="affectedControl" Type="System.Windows.Forms.Control" /><Parameter Name="affectedProperty" Type="System.String" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>If the <see cref="M:System.Windows.Forms.Control.SuspendLayout" /> method was called before calling the <see cref="M:System.Windows.Forms.Control.PerformLayout" /> method, the <see cref="E:System.Windows.Forms.Control.Layout" /> event is suppressed.</para><para>The <paramref name="affectedControl" /> and <paramref name="affectedProperty" /> parameters can both be set to null. Doing so causes the <see cref="P:System.Windows.Forms.LayoutEventArgs.AffectedControl" /> and <see cref="P:System.Windows.Forms.LayoutEventArgs.AffectedProperty" /> properties of the <see cref="T:System.Windows.Forms.LayoutEventArgs" /> created to be set to null.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Forces the control to apply layout logic to all its child controls.</para></summary><param name="affectedControl"><attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.Control" /> that represents the most recently changed control. </param><param name="affectedProperty"><attribution license="cc4" from="Microsoft" modified="false" />The name of the most recently changed property on the control. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes></Member><Member MemberName="PointToClient"><MemberSignature Language="C#" Value="public System.Drawing.Point PointToClient (System.Drawing.Point p);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Drawing.Point</ReturnType></ReturnValue><Parameters><Parameter Name="p" Type="System.Drawing.Point" /></Parameters><Docs><remarks>To be added.</remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Computes the location of the specified screen point into client coordinates.</para></summary><returns><attribution license="cc4" from="Microsoft" modified="false" /><para>A <see cref="T:System.Drawing.Point" /> that represents the converted <see cref="T:System.Drawing.Point" />, <paramref name="p" />, in client coordinates.</para></returns><param name="p"><attribution license="cc4" from="Microsoft" modified="false" />The screen coordinate <see cref="T:System.Drawing.Point" /> to convert. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="PointToScreen"><MemberSignature Language="C#" Value="public System.Drawing.Point PointToScreen (System.Drawing.Point p);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Drawing.Point</ReturnType></ReturnValue><Parameters><Parameter Name="p" Type="System.Drawing.Point" /></Parameters><Docs><remarks>To be added.</remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Computes the location of the specified client point into screen coordinates.</para></summary><returns><attribution license="cc4" from="Microsoft" modified="false" /><para>A <see cref="T:System.Drawing.Point" /> that represents the converted <see cref="T:System.Drawing.Point" />, <paramref name="p" />, in screen coordinates.</para></returns><param name="p"><attribution license="cc4" from="Microsoft" modified="false" />The client coordinate <see cref="T:System.Drawing.Point" /> to convert. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="PreferredSize"><MemberSignature Language="C#" Value="public System.Drawing.Size PreferredSize { get; }" /><MemberType>Property</MemberType><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.Browsable(false)</AttributeName></Attribute></Attributes><ReturnValue><ReturnType>System.Drawing.Size</ReturnType></ReturnValue><Docs><value>To be added.</value><remarks>To be added.</remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets the size of a rectangular area into which the control can fit.</para></summary></Docs></Member><Member MemberName="PreProcessControlMessage"><MemberSignature Language="C#" Value="public System.Windows.Forms.PreProcessControlState PreProcessControlMessage (ref System.Windows.Forms.Message msg);" /><MemberType>Method</MemberType><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes><ReturnValue><ReturnType>System.Windows.Forms.PreProcessControlState</ReturnType></ReturnValue><Parameters><Parameter Name="msg" Type="System.Windows.Forms.Message&amp;" RefType="ref" /></Parameters><Docs><param name="msg">To be added.</param><summary>To be added.</summary><returns>To be added.</returns><remarks>To be added.</remarks></Docs></Member><Member MemberName="PreProcessMessage"><MemberSignature Language="C#" Value="public virtual bool PreProcessMessage (ref System.Windows.Forms.Message msg);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Boolean</ReturnType></ReturnValue><Parameters><Parameter Name="msg" Type="System.Windows.Forms.Message&amp;" RefType="ref" /></Parameters><Docs><param name="msg">To be added.</param><summary>To be added.</summary><returns>To be added.</returns><remarks>To be added.</remarks></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="PreviewKeyDown"><MemberSignature Language="C#" Value="public event System.Windows.Forms.PreviewKeyDownEventHandler PreviewKeyDown;" /><MemberType>Event</MemberType><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Windows.Forms.PreviewKeyDownEventHandler</ReturnType></ReturnValue><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Some key presses, such as the TAB, RETURN, ESC, and arrow keys, are typically ignored by some controls because they are not considered input key presses. For example, by default, a <see cref="T:System.Windows.Controls.Button" /> control ignores the arrow keys. Pressing the arrow keys typically causes the focus to move to the previous or next control. The arrow keys are considered navigation keys and pressing these keys typically do not raise the <see cref="E:System.Windows.Forms.Control.KeyDown" /> event for a <see cref="T:System.Windows.Controls.Button" />. However, pressing the arrow keys for a <see cref="T:System.Windows.Controls.Button" /> does raise the <see cref="E:System.Windows.Forms.Control.PreviewKeyDown" /> event. By handling the <see cref="E:System.Windows.Forms.Control.PreviewKeyDown" /> event for a <see cref="T:System.Windows.Controls.Button" /> and setting the <see cref="P:System.Windows.Forms.PreviewKeyDownEventArgs.IsInputKey" /> property to true, you can raise the <see cref="E:System.Windows.Forms.Control.KeyDown" /> event when the arrow keys are pressed. However, if you handle the arrow keys, the focus will no longer move to the previous or next control.</para><para>For more information about handling events, see <format type="text/html"><a href="01e4f1bc-e55e-413f-98c7-6588493e5f67">Consuming Events</a></format>. </para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Occurs before the <see cref="E:System.Windows.Forms.Control.KeyDown" /> event when a key is pressed while focus is on this control.</para></summary></Docs></Member><Member MemberName="ProcessCmdKey"><MemberSignature Language="C#" Value="protected virtual bool ProcessCmdKey (ref System.Windows.Forms.Message msg, System.Windows.Forms.Keys keyData);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Boolean</ReturnType></ReturnValue><Parameters><Parameter Name="msg" Type="System.Windows.Forms.Message&amp;" RefType="ref" /><Parameter Name="keyData" Type="System.Windows.Forms.Keys" /></Parameters><Docs><param name="msg">To be added.</param><param name="keyData">To be added.</param><summary>To be added.</summary><returns>To be added.</returns><remarks>To be added.</remarks></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="ProcessDialogChar"><MemberSignature Language="C#" Value="protected virtual bool ProcessDialogChar (char charCode);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Boolean</ReturnType></ReturnValue><Parameters><Parameter Name="charCode" Type="System.Char" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>This method is called during message preprocessing to handle dialog characters, such as control mnemonics. This method is called only if the <see cref="M:System.Windows.Forms.Control.IsInputChar(System.Char)" /> method indicates that the control is not processing the character. The <see cref="M:System.Windows.Forms.Control.ProcessDialogChar(System.Char)" /> method simply sends the character to the parent's <see cref="M:System.Windows.Forms.Control.ProcessDialogChar(System.Char)" /> method, or returns false if the control has no parent. The <see cref="T:System.Windows.Forms.Form" /> class overrides this method to perform actual processing of dialog characters. This method is only called when the control is hosted in a Windows Forms application or as an ActiveX control.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Processes a dialog character.</para></summary><returns><attribution license="cc4" from="Microsoft" modified="false" /><para>true if the character was processed by the control; otherwise, false.</para></returns><param name="charCode"><attribution license="cc4" from="Microsoft" modified="false" />The character to process. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="ProcessDialogKey"><MemberSignature Language="C#" Value="protected virtual bool ProcessDialogKey (System.Windows.Forms.Keys keyData);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Boolean</ReturnType></ReturnValue><Parameters><Parameter Name="keyData" Type="System.Windows.Forms.Keys" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>This method is called during message preprocessing to handle dialog characters, such as TAB, RETURN, ESC, and arrow keys. This method is called only if the <see cref="M:System.Windows.Forms.Control.IsInputKey(System.Windows.Forms.Keys)" /> method indicates that the control is not processing the key. The <see cref="M:System.Windows.Forms.Control.ProcessDialogKey(System.Windows.Forms.Keys)" /> simply sends the character to the parent's <see cref="M:System.Windows.Forms.Control.ProcessDialogKey(System.Windows.Forms.Keys)" /> method, or returns false if the control has no parent. The <see cref="T:System.Windows.Forms.Form" /> class overrides this method to perform actual processing of dialog keys. This method is only called when the control is hosted in a Windows Forms application or as an ActiveX control.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Processes a dialog key.</para></summary><returns><attribution license="cc4" from="Microsoft" modified="false" /><para>true if the key was processed by the control; otherwise, false.</para></returns><param name="keyData"><attribution license="cc4" from="Microsoft" modified="false" />One of the <see cref="T:System.Windows.Forms.Keys" /> values that represents the key to process. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="ProcessKeyEventArgs"><MemberSignature Language="C#" Value="protected virtual bool ProcessKeyEventArgs (ref System.Windows.Forms.Message m);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Boolean</ReturnType></ReturnValue><Parameters><Parameter Name="m" Type="System.Windows.Forms.Message&amp;" RefType="ref" /></Parameters><Docs><param name="m">To be added.</param><summary>To be added.</summary><returns>To be added.</returns><remarks>To be added.</remarks></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="ProcessKeyMessage"><MemberSignature Language="C#" Value="protected virtual bool ProcessKeyMessage (ref System.Windows.Forms.Message m);" /><MemberType>Method</MemberType><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Boolean</ReturnType></ReturnValue><Parameters><Parameter Name="m" Type="System.Windows.Forms.Message&amp;" RefType="ref" /></Parameters><Docs><param name="m">To be added.</param><summary>To be added.</summary><returns>To be added.</returns><remarks>To be added.</remarks></Docs></Member><Member MemberName="ProcessKeyPreview"><MemberSignature Language="C#" Value="protected virtual bool ProcessKeyPreview (ref System.Windows.Forms.Message m);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Boolean</ReturnType></ReturnValue><Parameters><Parameter Name="m" Type="System.Windows.Forms.Message&amp;" RefType="ref" /></Parameters><Docs><param name="m">To be added.</param><summary>To be added.</summary><returns>To be added.</returns><remarks>To be added.</remarks></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="ProcessMnemonic"><MemberSignature Language="C#" Value="protected virtual bool ProcessMnemonic (char charCode);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Boolean</ReturnType></ReturnValue><Parameters><Parameter Name="charCode" Type="System.Char" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>This method is called to give a control the opportunity to process a mnemonic character. The method should determine whether the control is in a state to process mnemonics and if whether the given character represents a mnemonic. If so, the method should perform the action associated with the mnemonic and return true. If not, the method should return false. Implementations of this method often use the <see cref="M:System.Windows.Forms.Control.IsMnemonic(System.Char,System.String)" /> method to determine whether the given character matches a mnemonic in the control's text.</para><para>For example: </para><code>if (CanSelect &amp;&amp; IsMnemonic(charCode, MyControl.Text) {
      // Perform action associated with mnemonic.
       }
</code><para>This default implementation of the <see cref="M:System.Windows.Forms.Control.ProcessMnemonic(System.Char)" /> method simply returns false to indicate that the control has no mnemonic.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Processes a mnemonic character.</para></summary><returns><attribution license="cc4" from="Microsoft" modified="false" /><para>true if the character was processed as a mnemonic by the control; otherwise, false.</para></returns><param name="charCode"><attribution license="cc4" from="Microsoft" modified="false" />The character to process. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="ProductName"><MemberSignature Language="C#" Value="public string ProductName { get; }" /><MemberType>Property</MemberType><Attributes><Attribute><AttributeName>System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Hidden)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.Browsable(false)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes><ReturnValue><ReturnType>System.String</ReturnType></ReturnValue><Docs><value>To be added.</value><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The <see cref="P:System.Windows.Forms.Control.ProductName" /> property is a read-only property. To change the value of this property, set the <see cref="P:System.Reflection.AssemblyProductAttribute.Product" /> property value of the <see cref="T:System.Reflection.AssemblyProductAttribute" />. The following line of C# code sets the <see cref="P:System.Windows.Forms.Control.ProductName" /> property.</para><code> [assembly: AssemblyProduct("MyApplication")]
</code><block subset="none" type="note"><para>It is strongly recommended that you provide the company name, product name, and product version. Providing this information enables the use of Windows Forms features such as <see cref="P:System.Windows.Forms.Application.UserAppDataPath" /> that make it easier to write applications that comply with the "Certified for Windows" program. For more information about the Certified for Windows program, see http://msdn.microsoft.com/certification.</para></block></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets the product name of the assembly containing the control.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="ProductVersion"><MemberSignature Language="C#" Value="public string ProductVersion { get; }" /><MemberType>Property</MemberType><Attributes><Attribute><AttributeName>System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Hidden)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.Browsable(false)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes><ReturnValue><ReturnType>System.String</ReturnType></ReturnValue><Docs><value>To be added.</value><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The <see cref="P:System.Windows.Forms.Control.ProductVersion" /> property is a read-only property. To change the value of this property, set the <see cref="P:System.Reflection.AssemblyVersionAttribute.Version" /> property value of the <see cref="T:System.Reflection.AssemblyVersionAttribute" />. The following line of C# code sets the <see cref="P:System.Windows.Forms.Control.ProductVersion" /> property.</para><code> [assembly: AssemblyVersion("1.0.1")]
</code><block subset="none" type="note"><para>It is strongly recommended that you provide the company name, product name, and product version. Providing this information enables the use of Windows Forms features such as <see cref="P:System.Windows.Forms.Application.UserAppDataPath" /> that make it easier to write applications that comply with the "Certified for Windows" program. For more information about the Certified for Windows program, see http://msdn.microsoft.com/certification.</para></block></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets the version of the assembly containing the control.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="QueryAccessibilityHelp"><MemberSignature Language="C#" Value="public event System.Windows.Forms.QueryAccessibilityHelpEventHandler QueryAccessibilityHelp;" /><MemberType>Event</MemberType><ReturnValue><ReturnType>System.Windows.Forms.QueryAccessibilityHelpEventHandler</ReturnType></ReturnValue><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>You should use the <see cref="T:System.Windows.Forms.HelpProvider" /> class to enable users to invoke help on your accessible object by pressing the F1 key. Using the <see cref="T:System.Windows.Forms.HelpProvider" /> provides you with complete information in the <see cref="T:System.Windows.Forms.QueryAccessibilityHelpEventArgs" />. For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Occurs when <see cref="T:System.Windows.Forms.AccessibleObject" /> is providing help to accessibility applications.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="QueryContinueDrag"><MemberSignature Language="C#" Value="public event System.Windows.Forms.QueryContinueDragEventHandler QueryContinueDrag;" /><MemberType>Event</MemberType><ReturnValue><ReturnType>System.Windows.Forms.QueryContinueDragEventHandler</ReturnType></ReturnValue><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The <see cref="E:System.Windows.Forms.Control.QueryContinueDrag" /> event is raised when there is a change in the keyboard or mouse button state during a drag-and-drop operation. The <see cref="E:System.Windows.Forms.Control.QueryContinueDrag" /> event enables the drag source to determine whether the drag-and-drop operation should be canceled.</para><para>The following describes how and when events related to drag-and-drop operations are raised.</para><para>The <see cref="M:System.Windows.Forms.Control.DoDragDrop(System.Object,System.Windows.Forms.DragDropEffects)" /> method determines the control under the current cursor location. It then checks to see if the control is a valid drop target.</para><para>If the control is a valid drop target, the <see cref="E:System.Windows.Forms.Control.GiveFeedback" /> event is raised with the drag-and-drop effect specified. For a list of drag-and-drop effects, see the <see cref="T:System.Windows.Forms.DragDropEffects" /> enumeration.</para><para>Changes in the mouse cursor position, keyboard state, and mouse button state are tracked.</para><list type="bullet"><item><para>If the user moves out of a window, the <see cref="E:System.Windows.Forms.Control.DragLeave" /> event is raised.</para></item><item><para>If the mouse enters another control, the <see cref="E:System.Windows.Forms.Control.DragEnter" /> for that control is raised.</para></item><item><para>If the mouse moves but stays within the same control, the <see cref="E:System.Windows.Forms.Control.DragOver" /> event is raised.</para></item></list><para>If there is a change in the keyboard or mouse button state, the <see cref="E:System.Windows.Forms.Control.QueryContinueDrag" /> event is raised and determines whether to continue the drag, to drop the data, or to cancel the operation based on the value of the <see cref="P:System.Windows.Forms.QueryContinueDragEventArgs.Action" /> property of the event's <see cref="T:System.Windows.Forms.QueryContinueDragEventArgs" />.</para><list type="bullet"><item><para>If the value of <see cref="T:System.Windows.Forms.DragAction" /> is Continue, the <see cref="E:System.Windows.Forms.Control.DragOver" /> event is raised to continue the operation and the <see cref="E:System.Windows.Forms.Control.GiveFeedback" /> event is raised with the new effect so appropriate visual feedback can be set. For a list of valid drop effects, see the <see cref="T:System.Windows.Forms.DragDropEffects" /> enumeration. </para><block subset="none" type="note"><para>The <see cref="E:System.Windows.Forms.Control.DragOver" /> and <see cref="E:System.Windows.Forms.Control.GiveFeedback" /> events are paired so that as the mouse moves across the drop target, the user is given the most up-to-date feedback on the mouse's position.</para></block></item><item><para>If the value of <see cref="T:System.Windows.Forms.DragAction" /> is Drop, the drop effect value is returned to the source, so the source application can perform the appropriate operation on the source data; for example, cut the data if the operation was a move.</para></item><item><para>If the value of <see cref="T:System.Windows.Forms.DragAction" /> is Cancel, the <see cref="E:System.Windows.Forms.Control.DragLeave" /> event is raised.</para></item></list><para>By default, the <see cref="E:System.Windows.Forms.Control.QueryContinueDrag" /> event sets <see cref="P:System.Windows.Forms.QueryContinueDragEventArgs.Action" /> to Cancel in <see cref="T:System.Windows.Forms.DragAction" /> if the ESC key was pressed and sets <see cref="P:System.Windows.Forms.QueryContinueDragEventArgs.Action" /> to Drop in <see cref="T:System.Windows.Forms.DragAction" /> if the left, middle, or right mouse button is pressed.</para><para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Occurs during a drag-and-drop operation and enables the drag source to determine whether the drag-and-drop operation should be canceled.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="RaiseDragEvent"><MemberSignature Language="C#" Value="protected void RaiseDragEvent (object key, System.Windows.Forms.DragEventArgs e);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="key" Type="System.Object" /><Parameter Name="e" Type="System.Windows.Forms.DragEventArgs" /></Parameters><Docs><remarks>To be added.</remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Raises the appropriate drag event.</para></summary><param name="key"><attribution license="cc4" from="Microsoft" modified="false" />The event to raise. </param><param name="e"><attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.DragEventArgs" /> that contains the event data. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes></Member><Member MemberName="RaiseKeyEvent"><MemberSignature Language="C#" Value="protected void RaiseKeyEvent (object key, System.Windows.Forms.KeyEventArgs e);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="key" Type="System.Object" /><Parameter Name="e" Type="System.Windows.Forms.KeyEventArgs" /></Parameters><Docs><remarks>To be added.</remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Raises the appropriate key event.</para></summary><param name="key"><attribution license="cc4" from="Microsoft" modified="false" />The event to raise. </param><param name="e"><attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.KeyEventArgs" /> that contains the event data. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes></Member><Member MemberName="RaiseMouseEvent"><MemberSignature Language="C#" Value="protected void RaiseMouseEvent (object key, System.Windows.Forms.MouseEventArgs e);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="key" Type="System.Object" /><Parameter Name="e" Type="System.Windows.Forms.MouseEventArgs" /></Parameters><Docs><remarks>To be added.</remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Raises the appropriate mouse event.</para></summary><param name="key"><attribution license="cc4" from="Microsoft" modified="false" />The event to raise. </param><param name="e"><attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.MouseEventArgs" /> that contains the event data. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes></Member><Member MemberName="RaisePaintEvent"><MemberSignature Language="C#" Value="protected void RaisePaintEvent (object key, System.Windows.Forms.PaintEventArgs e);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="key" Type="System.Object" /><Parameter Name="e" Type="System.Windows.Forms.PaintEventArgs" /></Parameters><Docs><remarks>To be added.</remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Raises the appropriate paint event.</para></summary><param name="key"><attribution license="cc4" from="Microsoft" modified="false" />The event to raise. </param><param name="e"><attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.PaintEventArgs" /> that contains the event data. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes></Member><Member MemberName="RecreateHandle"><MemberSignature Language="C#" Value="protected void RecreateHandle ();" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters /><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The <see cref="M:System.Windows.Forms.Control.RecreateHandle" /> method is called whenever parameters are needed for a new control, but using a call from <see cref="M:System.Windows.Forms.Control.UpdateStyles" /> to <see cref="P:System.Windows.Forms.Control.CreateParams" /> is insufficient. This method also calls <see cref="M:System.Windows.Forms.Control.DestroyHandle" /> and <see cref="M:System.Windows.Forms.Control.CreateHandle" /> and sets <see cref="P:System.Windows.Forms.Control.RecreatingHandle" /> to true.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Forces the re-creation of the handle for the control.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes></Member><Member MemberName="RecreatingHandle"><MemberSignature Language="C#" Value="public bool RecreatingHandle { get; }" /><MemberType>Property</MemberType><Attributes><Attribute><AttributeName>System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Hidden)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.Browsable(false)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes><ReturnValue><ReturnType>System.Boolean</ReturnType></ReturnValue><Docs><value>To be added.</value><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The <see cref="P:System.Windows.Forms.Control.RecreatingHandle" /> property returns true if the <see cref="M:System.Windows.Forms.Control.RecreateHandle" /> method is still running on the control.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets a value indicating whether the control is currently re-creating its handle.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="RectangleToClient"><MemberSignature Language="C#" Value="public System.Drawing.Rectangle RectangleToClient (System.Drawing.Rectangle r);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Drawing.Rectangle</ReturnType></ReturnValue><Parameters><Parameter Name="r" Type="System.Drawing.Rectangle" /></Parameters><Docs><remarks>To be added.</remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Computes the size and location of the specified screen rectangle in client coordinates.</para></summary><returns><attribution license="cc4" from="Microsoft" modified="false" /><para>A <see cref="T:System.Drawing.Rectangle" /> that represents the converted <see cref="T:System.Drawing.Rectangle" />, <paramref name="r" />, in client coordinates.</para></returns><param name="r"><attribution license="cc4" from="Microsoft" modified="false" />The screen coordinate <see cref="T:System.Drawing.Rectangle" /> to convert. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="RectangleToScreen"><MemberSignature Language="C#" Value="public System.Drawing.Rectangle RectangleToScreen (System.Drawing.Rectangle r);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Drawing.Rectangle</ReturnType></ReturnValue><Parameters><Parameter Name="r" Type="System.Drawing.Rectangle" /></Parameters><Docs><remarks>To be added.</remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Computes the size and location of the specified client rectangle in screen coordinates.</para></summary><returns><attribution license="cc4" from="Microsoft" modified="false" /><para>A <see cref="T:System.Drawing.Rectangle" /> that represents the converted <see cref="T:System.Drawing.Rectangle" />, <paramref name="p" />, in screen coordinates.</para></returns><param name="r"><attribution license="cc4" from="Microsoft" modified="false" />The client coordinate <see cref="T:System.Drawing.Rectangle" /> to convert. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="ReflectMessage"><MemberSignature Language="C#" Value="protected static bool ReflectMessage (IntPtr hWnd, ref System.Windows.Forms.Message m);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Boolean</ReturnType></ReturnValue><Parameters><Parameter Name="hWnd" Type="System.IntPtr" /><Parameter Name="m" Type="System.Windows.Forms.Message&amp;" RefType="ref" /></Parameters><Docs><param name="hWnd">To be added.</param><param name="m">To be added.</param><summary>To be added.</summary><returns>To be added.</returns><remarks>To be added.</remarks></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes></Member><Member MemberName="Refresh"><MemberSignature Language="C#" Value="public virtual void Refresh ();" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters /><Docs><remarks>To be added.</remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Forces the control to invalidate its client area and immediately redraw itself and any child controls.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="Region"><MemberSignature Language="C#" Value="public System.Drawing.Region Region { set; get; }" /><MemberType>Property</MemberType><Attributes><Attribute><AttributeName>System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Hidden)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.Browsable(false)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes><ReturnValue><ReturnType>System.Drawing.Region</ReturnType></ReturnValue><Docs><value>To be added.</value><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The window region is a collection of pixels within the window where the operating system permits drawing. The operating system does not display any portion of a window that lies outside of the window region. The coordinates of a control's region are relative to the upper-left corner of the control, not the client area of the control.</para><block subset="none" type="note"><para>The collection of pixels contained with the region can be noncontiguous.</para></block></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets or sets the window region associated with the control.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="RegionChanged"><MemberSignature Language="C#" Value="public event EventHandler RegionChanged;" /><MemberType>Event</MemberType><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.EventHandler</ReturnType></ReturnValue><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>For more information about handling events, see <format type="text/html"><a href="01e4f1bc-e55e-413f-98c7-6588493e5f67">Consuming Events</a></format>. </para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Occurs when the value of the <see cref="P:System.Windows.Forms.Control.Region" /> property changes.</para></summary></Docs></Member><Member MemberName="RenderRightToLeft"><MemberSignature Language="C#" Value="protected bool RenderRightToLeft { get; }" /><MemberType>Property</MemberType><ReturnValue><ReturnType>System.Boolean</ReturnType></ReturnValue><Docs><value>To be added.</value><remarks>To be added.</remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>This property is now obsolete.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.Obsolete</AttributeName></Attribute></Attributes></Member><Member MemberName="ResetBackColor"><MemberSignature Language="C#" Value="public virtual void ResetBackColor ();" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters /><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>This method is not relevant for this class.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Resets the <see cref="P:System.Windows.Forms.Control.BackColor" /> property to its default value.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName></Attribute></Attributes></Member><Member MemberName="ResetBindings"><MemberSignature Language="C#" Value="public void ResetBindings ();" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters /><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>This method is not relevant for this class.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Causes a control bound to the <see cref="T:System.Windows.Forms.BindingSource" /> to reread all the items in the list and refresh their displayed values.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName></Attribute></Attributes></Member><Member MemberName="ResetCursor"><MemberSignature Language="C#" Value="public virtual void ResetCursor ();" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters /><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>This method is not relevant for this class.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Resets the <see cref="P:System.Windows.Forms.Control.Cursor" /> property to its default value.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName></Attribute></Attributes></Member><Member MemberName="ResetFont"><MemberSignature Language="C#" Value="public virtual void ResetFont ();" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters /><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>This method is not relevant for this class.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Resets the <see cref="P:System.Windows.Forms.Control.Font" /> property to its default value.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName></Attribute></Attributes></Member><Member MemberName="ResetForeColor"><MemberSignature Language="C#" Value="public virtual void ResetForeColor ();" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters /><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>This method is not relevant for this class.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Resets the <see cref="P:System.Windows.Forms.Control.ForeColor" /> property to its default value.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName></Attribute></Attributes></Member><Member MemberName="ResetImeMode"><MemberSignature Language="C#" Value="public void ResetImeMode ();" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters /><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>This method is not relevant for this class.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Resets the <see cref="P:System.Windows.Forms.Control.ImeMode" /> property to its default value.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName></Attribute></Attributes></Member><Member MemberName="ResetMouseEventArgs"><MemberSignature Language="C#" Value="protected void ResetMouseEventArgs ();" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters /><Docs><remarks>To be added.</remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Resets the control to handle the <see cref="E:System.Windows.Forms.Control.MouseLeave" /> event.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes></Member><Member MemberName="ResetRightToLeft"><MemberSignature Language="C#" Value="public virtual void ResetRightToLeft ();" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters /><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>This method is not relevant for this class.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Resets the <see cref="P:System.Windows.Forms.Control.RightToLeft" /> property to its default value.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName></Attribute></Attributes></Member><Member MemberName="ResetText"><MemberSignature Language="C#" Value="public virtual void ResetText ();" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters /><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>You typically use this method if you are either creating a designer for the <see cref="T:System.Windows.Forms.Control" /> or creating your own control incorporating the <see cref="T:System.Windows.Forms.Control" />.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Resets the <see cref="P:System.Windows.Forms.Control.Text" /> property to its default value.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="Resize"><MemberSignature Language="C#" Value="public event EventHandler Resize;" /><MemberType>Event</MemberType><ReturnValue><ReturnType>System.EventHandler</ReturnType></ReturnValue><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>To determine the <see cref="P:System.Windows.Forms.Control.Size" /> of the resized control, you can cast the <paramref name="sender" /> parameter of the <see cref="T:System.EventArgs" /> data to a <see cref="T:System.Windows.Forms.Control" /> and get its <see cref="P:System.Windows.Forms.Control.Size" /> property (or <see cref="P:System.Windows.Forms.Control.Height" /> and <see cref="P:System.Windows.Forms.Control.Width" /> properties individually).</para><para>To handle custom layouts, use the <see cref="E:System.Windows.Forms.Control.Layout" /> event instead of the Resize event. The <see cref="E:System.Windows.Forms.Control.Layout" /> event is raised in response to a <see cref="E:System.Windows.Forms.Control.Resize" /> event, but also in response to other changes that affect the layout of the control.</para><para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Occurs when the control is resized.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes></Member><Member MemberName="ResizeRedraw"><MemberSignature Language="C#" Value="protected bool ResizeRedraw { set; get; }" /><MemberType>Property</MemberType><ReturnValue><ReturnType>System.Boolean</ReturnType></ReturnValue><Docs><value>To be added.</value><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The <see cref="P:System.Windows.Forms.Control.ResizeRedraw" /> property value is equivalent to the return value of the <see cref="M:System.Windows.Forms.Control.GetStyle(System.Windows.Forms.ControlStyles)" /> method when passing in the <see cref="F:System.Windows.Forms.ControlStyles.ResizeRedraw" /> value as a parameter.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets or sets a value indicating whether the control redraws itself when resized.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="ResumeLayout"><MemberSignature Language="C#" Value="public void ResumeLayout ();" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters /><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Calling the <see cref="M:System.Windows.Forms.Control.ResumeLayout" /> method forces an immediate layout if there are any pending layout requests.</para><para>The <see cref="M:System.Windows.Forms.Control.SuspendLayout" /> and <see cref="M:System.Windows.Forms.Control.ResumeLayout" /> methods are used in tandem to suppress multiple <see cref="E:System.Windows.Forms.Control.Layout" /> events while you adjust multiple attributes of the control. For example, you would typically call the <see cref="M:System.Windows.Forms.Control.SuspendLayout" /> method, then set the <see cref="P:System.Windows.Forms.Control.Size" />, <see cref="P:System.Windows.Forms.Control.Location" />, <see cref="P:System.Windows.Forms.Control.Anchor" />, or <see cref="P:System.Windows.Forms.Control.Dock" /> properties of the control, and then call the <see cref="M:System.Windows.Forms.Control.ResumeLayout" /> method to enable the changes to take effect.</para><para>There must be no pending calls to <see cref="M:System.Windows.Forms.Control.SuspendLayout" /> for <see cref="M:System.Windows.Forms.Control.ResumeLayout" /> to be successfully called.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Resumes usual layout logic.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="ResumeLayout"><MemberSignature Language="C#" Value="public void ResumeLayout (bool performLayout);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="performLayout" Type="System.Boolean" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Calling the <see cref="M:System.Windows.Forms.Control.ResumeLayout" /> method forces an immediate layout if there are any pending layout requests. When the <paramref name="performLayout" /> parameter is set to true, an immediate layout occurs if there are any pending layout requests.</para><para>The <see cref="M:System.Windows.Forms.Control.SuspendLayout" /> and <see cref="M:System.Windows.Forms.Control.ResumeLayout" /> methods are used in tandem to suppress multiple <see cref="E:System.Windows.Forms.Control.Layout" /> events while you adjust multiple attributes of the control. For example, you would typically call the <see cref="M:System.Windows.Forms.Control.SuspendLayout" /> method, then set the <see cref="P:System.Windows.Forms.Control.Size" />, <see cref="P:System.Windows.Forms.Control.Location" />, <see cref="P:System.Windows.Forms.Control.Anchor" />, or <see cref="P:System.Windows.Forms.Control.Dock" /> properties of the control, and then call the <see cref="M:System.Windows.Forms.Control.ResumeLayout" /> method to enable the changes to take effect.</para><para>There must be no pending calls to <see cref="M:System.Windows.Forms.Control.SuspendLayout" /> for <see cref="M:System.Windows.Forms.Control.ResumeLayout" /> to be successfully called.</para><block subset="none" type="note"><para>When adding several controls to a parent control, it is recommended that you call the <see cref="M:System.Windows.Forms.Control.SuspendLayout" /> method before initializing the controls to be added. After adding the controls to the parent control, call the <see cref="M:System.Windows.Forms.Control.ResumeLayout" /> method. This will increase the performance of applications with many controls.</para></block></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Resumes usual layout logic, optionally forcing an immediate layout of pending layout requests.</para></summary><param name="performLayout"><attribution license="cc4" from="Microsoft" modified="false" />true to execute pending layout requests; otherwise, false. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="Right"><MemberSignature Language="C#" Value="public int Right { get; }" /><MemberType>Property</MemberType><Attributes><Attribute><AttributeName>System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Hidden)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.Browsable(false)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes><ReturnValue><ReturnType>System.Int32</ReturnType></ReturnValue><Docs><value>To be added.</value><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The value of the <see cref="P:System.Windows.Forms.Control.Right" /> property is equal to the sum of the <see cref="P:System.Windows.Forms.Control.Left" /> property value and the <see cref="P:System.Windows.Forms.Control.Width" /> property value.</para><para>The <see cref="P:System.Windows.Forms.Control.Right" /> property is read-only. You can change this property value indirectly by changing the value of the <see cref="P:System.Windows.Forms.Control.Left" /> or <see cref="P:System.Windows.Forms.Control.Width" /> properties or calling the <see cref="M:System.Windows.Forms.Control.SetBounds(System.Int32,System.Int32,System.Int32,System.Int32)" />, <see cref="M:System.Windows.Forms.Control.SetBoundsCore(System.Int32,System.Int32,System.Int32,System.Int32,System.Windows.Forms.BoundsSpecified)" />, <see cref="M:System.Windows.Forms.Control.UpdateBounds" />, or <see cref="M:System.Windows.Forms.Control.SetClientSizeCore(System.Int32,System.Int32)" /> methods.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets the distance, in pixels, between the right edge of the control and the left edge of its container's client area.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="RightToLeft"><MemberSignature Language="C#" Value="public virtual System.Windows.Forms.RightToLeft RightToLeft { set; get; }" /><MemberType>Property</MemberType><Attributes><Attribute><AttributeName>System.ComponentModel.Localizable(true)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.AmbientValue(System.Windows.Forms.RightToLeft.Inherit)</AttributeName></Attribute></Attributes><ReturnValue><ReturnType>System.Windows.Forms.RightToLeft</ReturnType></ReturnValue><Docs><value>To be added.</value><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The <see cref="P:System.Windows.Forms.Control.RightToLeft" /> property is an ambient property. An ambient property is a control property that, if not set, is retrieved from the parent control. For example, a <see cref="T:System.Windows.Forms.Button" /> will have the same <see cref="P:System.Windows.Forms.Control.BackColor" /> as its parent <see cref="T:System.Windows.Forms.Form" /> by default. For more information about ambient properties, see the <see cref="T:System.Windows.Forms.AmbientProperties" /> class or the <see cref="T:System.Windows.Forms.Control" /> class overview.</para><para>The <see cref="P:System.Windows.Forms.Control.RightToLeft" /> property is used for international applications where the language is written from right to left, such as Hebrew or Arabic. When this property is set to <see cref="F:System.Windows.Forms.RightToLeft.Yes" />, control elements that include text are displayed from right to left.</para><block subset="none" type="note"><para>If the value of the <see cref="P:System.Windows.Forms.Control.RightToLeft" /> property is changed at run time, only raw text without formatting is preserved.</para></block><para>The following are a few examples of how control elements are affected by the <see cref="P:System.Windows.Forms.Control.RightToLeft" /> property value of <see cref="F:System.Windows.Forms.RightToLeft.Yes" /> : </para><list type="bullet"><item><para>Vertical scroll bars are displayed on the left side rather than right side of scrollable controls (for example, <see cref="T:System.Windows.Forms.Form" />, <see cref="T:System.Windows.Forms.Panel" />, multiline <see cref="T:System.Windows.Forms.TextBox" />, and <see cref="T:System.Windows.Forms.RichTextBox" />).</para></item><item><para>Horizontal scroll bars start with the scroll box (thumb) right-aligned.</para></item><item><para>The check box element alignment, controlled by the CheckAlign property, is reversed for <see cref="T:System.Windows.Forms.CheckBox" /> and <see cref="T:System.Windows.Forms.RadioButton" /> controls.</para></item><item><para>Items in list box, combo box, and up-down controls are right aligned.</para></item><item><para>Up and down buttons are left-aligned on <see cref="T:System.Windows.Forms.NumericUpDown" /> and <see cref="T:System.Windows.Forms.DomainUpDown" /> controls.</para></item><item><para>Menus (<see cref="T:System.Windows.Forms.MainMenu" />, <see cref="T:System.Windows.Forms.MenuItem" />, and <see cref="T:System.Windows.Forms.ContextMenu" />) are displayed right-aligned.</para></item><item><para>The alignment of toolbar buttons on a <see cref="T:System.Windows.Forms.ToolBar" /> control or the alignment of text on a <see cref="T:System.Windows.Forms.ToolBarButton" /> is not affected by the <see cref="P:System.Windows.Forms.Control.RightToLeft" /> property.</para></item><item><para><see cref="T:System.Windows.Forms.AxHost" /> supports right-to-left alignment; however, the effect on an ActiveX control depends on the extent to which the control author implemented support for right-to-left display.</para></item></list></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets or sets a value indicating whether control's elements are aligned to support locales using right-to-left fonts.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="RightToLeftChanged"><MemberSignature Language="C#" Value="public event EventHandler RightToLeftChanged;" /><MemberType>Event</MemberType><ReturnValue><ReturnType>System.EventHandler</ReturnType></ReturnValue><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>This event is raised if the <see cref="P:System.Windows.Forms.Control.RightToLeft" /> property is changed by either a programmatic modification or user interaction.</para><para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Occurs when the <see cref="P:System.Windows.Forms.Control.RightToLeft" /> property value changes.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="RtlTranslateAlignment"><MemberSignature Language="C#" Value="protected System.Drawing.ContentAlignment RtlTranslateAlignment (System.Drawing.ContentAlignment align);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Drawing.ContentAlignment</ReturnType></ReturnValue><Parameters><Parameter Name="align" Type="System.Drawing.ContentAlignment" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>If the <see cref="P:System.Windows.Forms.Control.RightToLeft" /> property of <see cref="T:System.Windows.Forms.RightToLeft" /> is set to No, the return value is equal to the <paramref name="align" /> parameter passed in.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Converts the specified <see cref="T:System.Drawing.ContentAlignment" /> to the appropriate <see cref="T:System.Drawing.ContentAlignment" /> to support right-to-left text.</para></summary><returns><attribution license="cc4" from="Microsoft" modified="false" /><para>One of the <see cref="T:System.Drawing.ContentAlignment" /> values.</para></returns><param name="align"><attribution license="cc4" from="Microsoft" modified="false" />One of the <see cref="T:System.Drawing.ContentAlignment" /> values. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes></Member><Member MemberName="RtlTranslateAlignment"><MemberSignature Language="C#" Value="protected System.Windows.Forms.HorizontalAlignment RtlTranslateAlignment (System.Windows.Forms.HorizontalAlignment align);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Windows.Forms.HorizontalAlignment</ReturnType></ReturnValue><Parameters><Parameter Name="align" Type="System.Windows.Forms.HorizontalAlignment" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>If the <see cref="P:System.Windows.Forms.Control.RightToLeft" /> property of <see cref="T:System.Windows.Forms.RightToLeft" /> is set to No, the return value is equal to the <paramref name="align" /> parameter passed in.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Converts the specified <see cref="T:System.Windows.Forms.HorizontalAlignment" /> to the appropriate <see cref="T:System.Windows.Forms.HorizontalAlignment" /> to support right-to-left text.</para></summary><returns><attribution license="cc4" from="Microsoft" modified="false" /><para>One of the <see cref="T:System.Windows.Forms.HorizontalAlignment" /> values.</para></returns><param name="align"><attribution license="cc4" from="Microsoft" modified="false" />One of the <see cref="T:System.Windows.Forms.HorizontalAlignment" /> values. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes></Member><Member MemberName="RtlTranslateAlignment"><MemberSignature Language="C#" Value="protected System.Windows.Forms.LeftRightAlignment RtlTranslateAlignment (System.Windows.Forms.LeftRightAlignment align);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Windows.Forms.LeftRightAlignment</ReturnType></ReturnValue><Parameters><Parameter Name="align" Type="System.Windows.Forms.LeftRightAlignment" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>If the <see cref="P:System.Windows.Forms.Control.RightToLeft" /> property of <see cref="T:System.Windows.Forms.RightToLeft" /> is set to No, the return value is equal to the <paramref name="align" /> parameter passed in.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Converts the specified <see cref="T:System.Windows.Forms.LeftRightAlignment" /> to the appropriate <see cref="T:System.Windows.Forms.LeftRightAlignment" /> to support right-to-left text.</para></summary><returns><attribution license="cc4" from="Microsoft" modified="false" /><para>One of the <see cref="T:System.Windows.Forms.LeftRightAlignment" /> values.</para></returns><param name="align"><attribution license="cc4" from="Microsoft" modified="false" />One of the <see cref="T:System.Windows.Forms.LeftRightAlignment" /> values. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes></Member><Member MemberName="RtlTranslateContent"><MemberSignature Language="C#" Value="protected System.Drawing.ContentAlignment RtlTranslateContent (System.Drawing.ContentAlignment align);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Drawing.ContentAlignment</ReturnType></ReturnValue><Parameters><Parameter Name="align" Type="System.Drawing.ContentAlignment" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>If the <see cref="P:System.Windows.Forms.Control.RightToLeft" /> property of <see cref="T:System.Windows.Forms.RightToLeft" /> is set to No, the return value is equal to the <paramref name="align" /> parameter passed in.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Converts the specified <see cref="T:System.Drawing.ContentAlignment" /> to the appropriate <see cref="T:System.Drawing.ContentAlignment" /> to support right-to-left text.</para></summary><returns><attribution license="cc4" from="Microsoft" modified="false" /><para>One of the <see cref="T:System.Drawing.ContentAlignment" /> values.</para></returns><param name="align"><attribution license="cc4" from="Microsoft" modified="false" />One of the <see cref="T:System.Drawing.ContentAlignment" /> values. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes></Member><Member MemberName="RtlTranslateHorizontal"><MemberSignature Language="C#" Value="protected System.Windows.Forms.HorizontalAlignment RtlTranslateHorizontal (System.Windows.Forms.HorizontalAlignment align);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Windows.Forms.HorizontalAlignment</ReturnType></ReturnValue><Parameters><Parameter Name="align" Type="System.Windows.Forms.HorizontalAlignment" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>If the <see cref="P:System.Windows.Forms.Control.RightToLeft" /> property of <see cref="T:System.Windows.Forms.RightToLeft" /> is set to No, the return value is equal to the <paramref name="align" /> parameter passed in.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Converts the specified <see cref="T:System.Windows.Forms.HorizontalAlignment" /> to the appropriate <see cref="T:System.Windows.Forms.HorizontalAlignment" /> to support right-to-left text.</para></summary><returns><attribution license="cc4" from="Microsoft" modified="false" /><para>One of the <see cref="T:System.Windows.Forms.HorizontalAlignment" /> values.</para></returns><param name="align"><attribution license="cc4" from="Microsoft" modified="false" />One of the <see cref="T:System.Windows.Forms.HorizontalAlignment" /> values. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes></Member><Member MemberName="RtlTranslateLeftRight"><MemberSignature Language="C#" Value="protected System.Windows.Forms.LeftRightAlignment RtlTranslateLeftRight (System.Windows.Forms.LeftRightAlignment align);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Windows.Forms.LeftRightAlignment</ReturnType></ReturnValue><Parameters><Parameter Name="align" Type="System.Windows.Forms.LeftRightAlignment" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>If the <see cref="P:System.Windows.Forms.Control.RightToLeft" /> property of <see cref="T:System.Windows.Forms.RightToLeft" /> is set to No, the return value is equal to the <paramref name="align" /> parameter passed in.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Converts the specified <see cref="T:System.Windows.Forms.LeftRightAlignment" /> to the appropriate <see cref="T:System.Windows.Forms.LeftRightAlignment" /> to support right-to-left text.</para></summary><returns><attribution license="cc4" from="Microsoft" modified="false" /><para>One of the <see cref="T:System.Windows.Forms.LeftRightAlignment" /> values.</para></returns><param name="align"><attribution license="cc4" from="Microsoft" modified="false" />One of the <see cref="T:System.Windows.Forms.LeftRightAlignment" /> values. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes></Member><Member MemberName="Scale"><MemberSignature Language="C#" Value="public void Scale (System.Drawing.SizeF factor);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="factor" Type="System.Drawing.SizeF" /></Parameters><Docs><since version=".NET 2.0" /><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The <see cref="M:System.Windows.Forms.Control.Scale(System.Drawing.SizeF)" /> method scales the control by the specified scaling <paramref name="factor" />. It also recursively scales all child controls if the <see cref="P:System.Windows.Forms.Control.ScaleChildren" /> property is true. Internally, this method calls <see cref="M:System.Windows.Forms.Control.ScaleControl(System.Drawing.SizeF,System.Windows.Forms.BoundsSpecified)" /> to scale each control.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Scales the control and all child controls by the specified scaling factor.</para></summary><param name="factor"><attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Drawing.SizeF" /> containing the horizontal and vertical scaling factors.</param></Docs><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes></Member><Member MemberName="Scale"><MemberSignature Language="C#" Value="public void Scale (float ratio);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="ratio" Type="System.Single" /></Parameters><Docs><remarks>To be added.</remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Scales the control and any child controls.</para></summary><param name="ratio"><attribution license="cc4" from="Microsoft" modified="false" />The ratio to use for scaling.</param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.Obsolete</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName></Attribute></Attributes></Member><Member MemberName="Scale"><MemberSignature Language="C#" Value="public void Scale (float dx, float dy);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="dx" Type="System.Single" /><Parameter Name="dy" Type="System.Single" /></Parameters><Docs><remarks>To be added.</remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Scales the entire control and any child controls.</para></summary><param name="dx"><attribution license="cc4" from="Microsoft" modified="false" />The horizontal scaling factor.</param><param name="dy"><attribution license="cc4" from="Microsoft" modified="false" />The vertical scaling factor.</param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.Obsolete</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName></Attribute></Attributes></Member><Member MemberName="ScaleChildren"><MemberSignature Language="C#" Value="protected virtual bool ScaleChildren { get; }" /><MemberType>Property</MemberType><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes><ReturnValue><ReturnType>System.Boolean</ReturnType></ReturnValue><Docs><value>To be added.</value><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>If the <see cref="P:System.Windows.Forms.Control.ScaleChildren" /> property is true, then the <see cref="M:System.Windows.Forms.Control.Scale(System.Single)" /> method will recursively call the <see cref="M:System.Windows.Forms.Control.ScaleControl(System.Drawing.SizeF,System.Windows.Forms.BoundsSpecified)" /> method of each of its child controls.</para><para>The default implementation of <see cref="P:System.Windows.Forms.Control.ScaleChildren" /> always returns true. Derived classes can override <see cref="P:System.Windows.Forms.Control.ScaleChildren" /> to return false to indicate that scaling should not be performed on their children. </para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets a value that determines the scaling of child controls. </para></summary></Docs></Member><Member MemberName="ScaleControl"><MemberSignature Language="C#" Value="protected virtual void ScaleControl (System.Drawing.SizeF factor, System.Windows.Forms.BoundsSpecified specified);" /><MemberType>Method</MemberType><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="factor" Type="System.Drawing.SizeF" /><Parameter Name="specified" Type="System.Windows.Forms.BoundsSpecified" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>If the control is top level, this will not scale the control's location. This does not scale children or the size of automatically sized controls. You can omit scaling in any direction by changing the value of the <paramref name="specified" /> parameter.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Scales a control's location, size, padding and margin.</para></summary><param name="factor"><attribution license="cc4" from="Microsoft" modified="false" />The factor by which the height and width of the control will be scaled.</param><param name="specified"><attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.BoundsSpecified" /> value that specifies the bounds of the control to use when defining its size and position.</param></Docs></Member><Member MemberName="ScaleCore"><MemberSignature Language="C#" Value="protected virtual void ScaleCore (float dx, float dy);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="dx" Type="System.Single" /><Parameter Name="dy" Type="System.Single" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>This method is not relevant for this class.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>This method is not relevant for this class.</para></summary><param name="dx"><attribution license="cc4" from="Microsoft" modified="false" />The horizontal scaling factor.</param><param name="dy"><attribution license="cc4" from="Microsoft" modified="false" />The vertical scaling factor.</param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName></Attribute></Attributes></Member><Member MemberName="Select"><MemberSignature Language="C#" Value="public void Select ();" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters /><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The <see cref="M:System.Windows.Forms.Control.Select" /> method activates the control if the control's Selectable style bit is set to true in <see cref="T:System.Windows.Forms.ControlStyles" />, it is contained in another control, and all its parent controls are both visible and enabled.</para><para>The Windows Forms controls in the following list are not selectable. Controls derived from controls in the list will also not be selectable.</para><list type="bullet"><item><para><see cref="T:System.Windows.Forms.Label" /></para></item><item><para><see cref="T:System.Windows.Forms.Panel" /></para></item><item><para><see cref="T:System.Windows.Forms.GroupBox" /></para></item><item><para><see cref="T:System.Windows.Forms.PictureBox" /></para></item><item><para><see cref="T:System.Windows.Forms.ProgressBar" /></para></item><item><para><see cref="T:System.Windows.Forms.Splitter" /></para></item><item><para><see cref="T:System.Windows.Forms.LinkLabel" /> (when there is no link present in the control) </para></item></list></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Activates the control.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="Select"><MemberSignature Language="C#" Value="protected virtual void Select (bool directed, bool forward);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="directed" Type="System.Boolean" /><Parameter Name="forward" Type="System.Boolean" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The <paramref name="directed" /> and <paramref name="forward" /> parameters are used by container-style controls. When the <paramref name="directed" /> parameter is set to true, the <paramref name="forward" /> parameter is evaluated to determine which control to select. When <paramref name="forward" /> is set to true, the next control in the tab order is selected; when false, the previous control in the tab order is selected.</para><para>The <see cref="M:System.Windows.Forms.Control.Select" /> method activates the control if the control's Selectable style bit is set to true in <see cref="T:System.Windows.Forms.ControlStyles" />, it is contained in another control, and all its parent controls are both visible and enabled.</para><para>The Windows Forms controls in the following list are not selectable. Controls derived from controls in the list will also not be selectable.</para><list type="bullet"><item><para><see cref="T:System.Windows.Forms.Label" /></para></item><item><para><see cref="T:System.Windows.Forms.Panel" /></para></item><item><para><see cref="T:System.Windows.Forms.GroupBox" /></para></item><item><para><see cref="T:System.Windows.Forms.PictureBox" /></para></item><item><para><see cref="T:System.Windows.Forms.ProgressBar" /></para></item><item><para><see cref="T:System.Windows.Forms.Splitter" /></para></item><item><para><see cref="T:System.Windows.Forms.LinkLabel" /> (when there is no link present in the control) </para></item></list></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Activates a child control. Optionally specifies the direction in the tab order to select the control from.</para></summary><param name="directed"><attribution license="cc4" from="Microsoft" modified="false" />true to specify the direction of the control to select; otherwise, false. </param><param name="forward"><attribution license="cc4" from="Microsoft" modified="false" />true to move forward in the tab order; false to move backward in the tab order. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="SelectNextControl"><MemberSignature Language="C#" Value="public bool SelectNextControl (System.Windows.Forms.Control ctl, bool forward, bool tabStopOnly, bool nested, bool wrap);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Boolean</ReturnType></ReturnValue><Parameters><Parameter Name="ctl" Type="System.Windows.Forms.Control" /><Parameter Name="forward" Type="System.Boolean" /><Parameter Name="tabStopOnly" Type="System.Boolean" /><Parameter Name="nested" Type="System.Boolean" /><Parameter Name="wrap" Type="System.Boolean" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The <see cref="M:System.Windows.Forms.Control.SelectNextControl(System.Windows.Forms.Control,System.Boolean,System.Boolean,System.Boolean,System.Boolean)" /> method activates the next control in the tab order if the control's Selectable style bit is set to true in <see cref="T:System.Windows.Forms.ControlStyles" />, it is contained in another control, and all its parent controls are both visible and enabled.</para><para>The Windows Forms controls in the following list are not selectable. Controls derived from controls in the list will also not be selectable.</para><list type="bullet"><item><para><see cref="T:System.Windows.Forms.Label" /></para></item><item><para><see cref="T:System.Windows.Forms.Panel" /></para></item><item><para><see cref="T:System.Windows.Forms.GroupBox" /></para></item><item><para><see cref="T:System.Windows.Forms.PictureBox" /></para></item><item><para><see cref="T:System.Windows.Forms.ProgressBar" /></para></item><item><para><see cref="T:System.Windows.Forms.Splitter" /></para></item><item><para><see cref="T:System.Windows.Forms.LinkLabel" /> (when there is no link present in the control) </para></item></list><para>When you change the focus by using the keyboard (TAB, SHIFT+TAB, and so on), by calling the <see cref="M:System.Windows.Forms.Control.Select" /> or <see cref="M:System.Windows.Forms.Control.SelectNextControl(System.Windows.Forms.Control,System.Boolean,System.Boolean,System.Boolean,System.Boolean)" /> methods, or by setting the <see cref="P:System.Windows.Forms.ContainerControl.ActiveControl" /> property to the current form, focus events occur in the following order: </para><list type="ordered"><item><para><see cref="E:System.Windows.Forms.Control.Enter" /></para></item><item><para><see cref="E:System.Windows.Forms.Control.GotFocus" /></para></item><item><para><see cref="E:System.Windows.Forms.Control.Leave" /></para></item><item><para><see cref="E:System.Windows.Forms.Control.Validating" /></para></item><item><para><see cref="E:System.Windows.Forms.Control.Validated" /></para></item><item><para><see cref="E:System.Windows.Forms.Control.LostFocus" /></para></item></list><para>If the <see cref="P:System.Windows.Forms.Control.CausesValidation" /> property is set to false, the <see cref="E:System.Windows.Forms.Control.Validating" /> and <see cref="E:System.Windows.Forms.Control.Validated" /> events are suppressed.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Activates the next control.</para></summary><returns><attribution license="cc4" from="Microsoft" modified="false" /><para>true if a control was activated; otherwise, false.</para></returns><param name="ctl"><attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Windows.Forms.Control" /> at which to start the search. </param><param name="forward"><attribution license="cc4" from="Microsoft" modified="false" />true to move forward in the tab order; false to move backward in the tab order. </param><param name="tabStopOnly"><attribution license="cc4" from="Microsoft" modified="false" />true to ignore the controls with the <see cref="P:System.Windows.Forms.Control.TabStop" /> property set to false; otherwise, false. </param><param name="nested"><attribution license="cc4" from="Microsoft" modified="false" />true to include nested (children of child controls) child controls; otherwise, false. </param><param name="wrap"><attribution license="cc4" from="Microsoft" modified="false" />true to continue searching from the first control in the tab order after the last control has been reached; otherwise, false. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="SendToBack"><MemberSignature Language="C#" Value="public void SendToBack ();" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters /><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The control is moved to the back of the z-order. If the control is a child of another control, the child control is moved to the back of the z-order. If the control is a top-level control, this method will not work correctly unless the control is active. A top-level control is a control, such as a <see cref="T:System.Windows.Forms.Form" />, that is not a child of another control. An active control is a visible control that has input focus. To use the <see cref="M:System.Windows.Forms.Control.SendToBack" /> method with an inactive, top-level control, first call the <see cref="M:System.Windows.Forms.Control.BringToFront" /> method on the control. </para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Sends the control to the back of the z-order.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="SetAutoSizeMode"><MemberSignature Language="C#" Value="protected void SetAutoSizeMode (System.Windows.Forms.AutoSizeMode mode);" /><MemberType>Method</MemberType><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="mode" Type="System.Windows.Forms.AutoSizeMode" /></Parameters><Docs><remarks>To be added.</remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Sets a value indicating how a control will behave when its <see cref="P:System.Windows.Forms.Control.AutoSize" /> property is enabled.</para></summary><param name="mode"><attribution license="cc4" from="Microsoft" modified="false" />One of the <see cref="T:System.Windows.Forms.AutoSizeMode" /> values.</param></Docs></Member><Member MemberName="SetBounds"><MemberSignature Language="C#" Value="public void SetBounds (int x, int y, int width, int height);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="x" Type="System.Int32" /><Parameter Name="y" Type="System.Int32" /><Parameter Name="width" Type="System.Int32" /><Parameter Name="height" Type="System.Int32" /></Parameters><Docs><remarks>To be added.</remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Sets the bounds of the control to the specified location and size.</para></summary><param name="x"><attribution license="cc4" from="Microsoft" modified="false" />The new <see cref="P:System.Windows.Forms.Control.Left" /> property value of the control. </param><param name="y"><attribution license="cc4" from="Microsoft" modified="false" />The new <see cref="P:System.Windows.Forms.Control.Top" /> property value of the control. </param><param name="width"><attribution license="cc4" from="Microsoft" modified="false" />The new <see cref="P:System.Windows.Forms.Control.Width" /> property value of the control. </param><param name="height"><attribution license="cc4" from="Microsoft" modified="false" />The new <see cref="P:System.Windows.Forms.Control.Height" /> property value of the control. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="SetBounds"><MemberSignature Language="C#" Value="public void SetBounds (int x, int y, int width, int height, System.Windows.Forms.BoundsSpecified specified);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="x" Type="System.Int32" /><Parameter Name="y" Type="System.Int32" /><Parameter Name="width" Type="System.Int32" /><Parameter Name="height" Type="System.Int32" /><Parameter Name="specified" Type="System.Windows.Forms.BoundsSpecified" /></Parameters><Docs><remarks>To be added.</remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Sets the specified bounds of the control to the specified location and size.</para></summary><param name="x"><attribution license="cc4" from="Microsoft" modified="false" />The new <see cref="P:System.Windows.Forms.Control.Left" /> property value of the control. </param><param name="y"><attribution license="cc4" from="Microsoft" modified="false" />The new <see cref="P:System.Windows.Forms.Control.Top" /> property value of the control. </param><param name="width"><attribution license="cc4" from="Microsoft" modified="false" />The new <see cref="P:System.Windows.Forms.Control.Width" /> property value of the control. </param><param name="height"><attribution license="cc4" from="Microsoft" modified="false" />The new <see cref="P:System.Windows.Forms.Control.Height" /> property value of the control. </param><param name="specified"><attribution license="cc4" from="Microsoft" modified="false" />A bitwise combination of the <see cref="T:System.Windows.Forms.BoundsSpecified" /> values. For any parameter not specified, the current value will be used. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="SetBoundsCore"><MemberSignature Language="C#" Value="protected virtual void SetBoundsCore (int x, int y, int width, int height, System.Windows.Forms.BoundsSpecified specified);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="x" Type="System.Int32" /><Parameter Name="y" Type="System.Int32" /><Parameter Name="width" Type="System.Int32" /><Parameter Name="height" Type="System.Int32" /><Parameter Name="specified" Type="System.Windows.Forms.BoundsSpecified" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Typically, the parameters that correspond to the bounds not included in the <paramref name="specified" /> parameter are passed in with their current values. For example, the <see cref="P:System.Windows.Forms.Control.Height" />, <see cref="P:System.Windows.Forms.Control.Width" />, or the <see cref="P:System.Drawing.Point.X" /> or <see cref="P:System.Drawing.Point.Y" /> properties of the <see cref="P:System.Windows.Forms.Control.Location" /> property can be passed in with a reference to the current instance of the control. However all values passed in are honored and applied to the control.</para><para>The <paramref name="boundsSpecified" /> parameter represents the elements of the controls <see cref="P:System.Windows.Forms.Control.Bounds" /> changed by your application. For example, if you change the <see cref="P:System.Windows.Forms.Control.Size" /> of the control, the <paramref name="boundsSpecified" /> parameter value is the Size value of <see cref="T:System.Windows.Forms.BoundsSpecified" />. However, if the <see cref="P:System.Windows.Forms.Control.Size" /> is adjusted in response to the <see cref="P:System.Windows.Forms.Control.Dock" /> property being set, the <paramref name="boundsSpecified" /> parameter value is the None value of <see cref="T:System.Windows.Forms.BoundsSpecified" />.</para><block subset="none" type="note"><para>On Windows Server 2003 systems, the size of a <see cref="T:System.Windows.Forms.Form" /> is restricted by the maximum pixel width and height of the monitor. </para></block></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Performs the work of setting the specified bounds of this control.</para></summary><param name="x"><attribution license="cc4" from="Microsoft" modified="false" />The new <see cref="P:System.Windows.Forms.Control.Left" /> property value of the control. </param><param name="y"><attribution license="cc4" from="Microsoft" modified="false" />The new <see cref="P:System.Windows.Forms.Control.Top" /> property value of the control. </param><param name="width"><attribution license="cc4" from="Microsoft" modified="false" />The new <see cref="P:System.Windows.Forms.Control.Width" /> property value of the control. </param><param name="height"><attribution license="cc4" from="Microsoft" modified="false" />The new <see cref="P:System.Windows.Forms.Control.Height" /> property value of the control. </param><param name="specified"><attribution license="cc4" from="Microsoft" modified="false" />A bitwise combination of the <see cref="T:System.Windows.Forms.BoundsSpecified" /> values. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes></Member><Member MemberName="SetClientSizeCore"><MemberSignature Language="C#" Value="protected virtual void SetClientSizeCore (int x, int y);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="x" Type="System.Int32" /><Parameter Name="y" Type="System.Int32" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The client area starts at the (0, 0) location and extends to the (<paramref name="x" />, <paramref name="y" />) location.</para><para>Typically, you should not set the <see cref="P:System.Windows.Forms.Control.ClientSize" /> of the control.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Sets the size of the client area of the control.</para></summary><param name="x"><attribution license="cc4" from="Microsoft" modified="false" />The client area width, in pixels. </param><param name="y"><attribution license="cc4" from="Microsoft" modified="false" />The client area height, in pixels. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes></Member><Member MemberName="SetStyle"><MemberSignature Language="C#" Value="protected void SetStyle (System.Windows.Forms.ControlStyles flag, bool value);" /><MemberType>Method</MemberType><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="flag" Type="System.Windows.Forms.ControlStyles" /><Parameter Name="value" Type="System.Boolean" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Control style bit flags are used to categorize supported behavior. A control can enable a style by calling the <see cref="M:System.Windows.Forms.Control.SetStyle(System.Windows.Forms.ControlStyles,System.Boolean)" /> method and passing in the appropriate <see cref="T:System.Windows.Forms.ControlStyles" /> bit (or bits) and the Boolean value to set the bit(s) to. To determine the value assigned to a specified <see cref="T:System.Windows.Forms.ControlStyles" /> bit, use the <see cref="M:System.Windows.Forms.Control.GetStyle(System.Windows.Forms.ControlStyles)" /> method and pass in the <see cref="T:System.Windows.Forms.ControlStyles" /> member to evaluate.</para><block subset="none" type="note"><para>Setting the control style bits can substantially change the behavior of the control. Review the <see cref="T:System.Windows.Forms.ControlStyles" /> enumeration documentation to understand the effects of changing the control style bits before calling the <see cref="M:System.Windows.Forms.Control.SetStyle(System.Windows.Forms.ControlStyles,System.Boolean)" /> method.</para></block></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Sets a specified <see cref="T:System.Windows.Forms.ControlStyles" /> flag to either true or false.</para></summary><param name="flag"><attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Windows.Forms.ControlStyles" /> bit to set. </param><param name="value"><attribution license="cc4" from="Microsoft" modified="false" />true to apply the specified style to the control; otherwise, false. </param></Docs></Member><Member MemberName="SetTopLevel"><MemberSignature Language="C#" Value="protected void SetTopLevel (bool value);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="value" Type="System.Boolean" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>If you call the <see cref="M:System.Windows.Forms.Control.SetTopLevel(System.Boolean)" /> method of a <see cref="T:System.Windows.Forms.Form" /> and pass in a value of false, the form will not be visible until you call <see cref="M:System.Windows.Forms.Control.SetTopLevel(System.Boolean)" /> again, passing in a value of true.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Sets the control as the top-level control.</para></summary><param name="value"><attribution license="cc4" from="Microsoft" modified="false" />true to set the control as the top-level control; otherwise, false. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="SetVisibleCore"><MemberSignature Language="C#" Value="protected virtual void SetVisibleCore (bool value);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="value" Type="System.Boolean" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>You would typically override this method to change the visibility behavior of the control.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Sets the control to the specified visible state.</para></summary><param name="value"><attribution license="cc4" from="Microsoft" modified="false" />true to make the control visible; otherwise, false. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="Show"><MemberSignature Language="C#" Value="public void Show ();" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters /><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Showing the control is equivalent to setting the <see cref="P:System.Windows.Forms.Control.Visible" /> property to true. After the <see cref="M:System.Windows.Forms.Control.Show" /> method is called, the <see cref="P:System.Windows.Forms.Control.Visible" /> property returns a value of true until the <see cref="M:System.Windows.Forms.Control.Hide" /> method is called.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Displays the control to the user.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="ShowFocusCues"><MemberSignature Language="C#" Value="protected virtual bool ShowFocusCues { get; }" /><MemberType>Property</MemberType><Attributes><Attribute><AttributeName>System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Hidden)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.Browsable(false)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes><ReturnValue><ReturnType>System.Boolean</ReturnType></ReturnValue><Docs><value>To be added.</value><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>For more information about this feature, see the WM_CHANGEUISTATE, WM_QUERYUISTATE, and WM_UPDATEUISTATE topics in the MSDN library at http://msdn.microsoft.com/library.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets a value indicating whether the control should display focus rectangles.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="ShowKeyboardCues"><MemberSignature Language="C#" Value="protected virtual bool ShowKeyboardCues { get; }" /><MemberType>Property</MemberType><Attributes><Attribute><AttributeName>System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Hidden)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.Browsable(false)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes><ReturnValue><ReturnType>System.Boolean</ReturnType></ReturnValue><Docs><value>To be added.</value><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>In controls created in the Windows Forms designer, keyboard accelerators are visible by default.</para><para>For more information about this feature, see the WM_QUERYUISTATE, WM_UPDATEUISTATE, and WM_CHANGEUISTATE topics in the MSDN library at http://msdn.microsoft.com/library.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets a value indicating whether the user interface is in the appropriate state to show or hide keyboard accelerators.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="Site"><MemberSignature Language="C#" Value="public override System.ComponentModel.ISite Site { set; get; }" /><MemberType>Property</MemberType><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes><ReturnValue><ReturnType>System.ComponentModel.ISite</ReturnType></ReturnValue><Docs><value>To be added.</value><remarks>To be added.</remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets or sets the site of the control.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="Size"><MemberSignature Language="C#" Value="public System.Drawing.Size Size { set; get; }" /><MemberType>Property</MemberType><Attributes><Attribute><AttributeName>System.ComponentModel.Localizable(true)</AttributeName></Attribute></Attributes><ReturnValue><ReturnType>System.Drawing.Size</ReturnType></ReturnValue><Docs><value>To be added.</value><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Because the <see cref="T:System.Drawing.Size" /> class is a value type (Structure in vbprvb, struct in csprcs), it is returned by value, meaning accessing the property returns a copy of the size of the control. So, adjusting the <see cref="P:System.Drawing.Size.Width" /> or <see cref="P:System.Drawing.Size.Height" /> properties of the <see cref="T:System.Drawing.Size" /> returned from this property will not affect the <see cref="P:System.Windows.Forms.Control.Width" /> or <see cref="P:System.Windows.Forms.Control.Height" /> of the control. To adjust the <see cref="P:System.Windows.Forms.Control.Width" /> or <see cref="P:System.Windows.Forms.Control.Height" /> of the control, you must set the control's <see cref="P:System.Windows.Forms.Control.Width" /> or <see cref="P:System.Windows.Forms.Control.Height" /> property, or set the <see cref="P:System.Windows.Forms.Control.Size" /> property with a new <see cref="T:System.Drawing.Size" />.</para><block subset="none" type="note"><para>To maintain better performance, do not set the <see cref="T:System.Drawing.Size" /> of a control in its constructor. The preferred method is to override the <see cref="P:System.Windows.Forms.Control.DefaultSize" /> property.</para></block><block subset="none" type="note"><para>On Windows Server 2003 systems, the size of a <see cref="T:System.Windows.Forms.Form" /> is restricted by the maximum pixel width and height of the monitor. </para></block></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets or sets the height and width of the control.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="SizeChanged"><MemberSignature Language="C#" Value="public event EventHandler SizeChanged;" /><MemberType>Event</MemberType><ReturnValue><ReturnType>System.EventHandler</ReturnType></ReturnValue><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>It is preferable to use the <see cref="E:System.Windows.Forms.Control.Layout" /> event to handle custom layouts. The <see cref="E:System.Windows.Forms.Control.Layout" /> event is raised in response to <see cref="E:System.Windows.Forms.Control.Resize" /> events, but also in other conditions when layout might need to be applied.</para><para>This event is raised if the <see cref="P:System.Windows.Forms.Control.Size" /> property is changed by either a programmatic modification or user interaction.</para><para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Occurs when the <see cref="P:System.Windows.Forms.Control.Size" /> property value changes.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="SizeFromClientSize"><MemberSignature Language="C#" Value="protected virtual System.Drawing.Size SizeFromClientSize (System.Drawing.Size clientSize);" /><MemberType>Method</MemberType><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes><ReturnValue><ReturnType>System.Drawing.Size</ReturnType></ReturnValue><Parameters><Parameter Name="clientSize" Type="System.Drawing.Size" /></Parameters><Docs><remarks>To be added.</remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Determines the size of the entire control from the height and width of its client area.</para></summary><returns><attribution license="cc4" from="Microsoft" modified="false" /><para>A <see cref="T:System.Drawing.Size" /> value representing the height and width of the entire control.</para></returns><param name="clientSize"><attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Drawing.Size" /> value representing the height and width of the control's client area.</param></Docs></Member><Member MemberName="StyleChanged"><MemberSignature Language="C#" Value="public event EventHandler StyleChanged;" /><MemberType>Event</MemberType><ReturnValue><ReturnType>System.EventHandler</ReturnType></ReturnValue><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The <see cref="E:System.Windows.Forms.Control.StyleChanged" /> event occurs when <see cref="T:System.Windows.Forms.ControlStyles" /> flags have been added or changed.</para><para>This event is raised if the control style is changed by either a programmatic modification or user interaction.</para><para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Occurs when the control style changes.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="SuspendLayout"><MemberSignature Language="C#" Value="public void SuspendLayout ();" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters /><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The layout logic of the control is suspended until the <see cref="M:System.Windows.Forms.Control.ResumeLayout" /> method is called.</para><para>The <see cref="M:System.Windows.Forms.Control.SuspendLayout" /> and <see cref="M:System.Windows.Forms.Control.ResumeLayout" /> methods are used in tandem to suppress multiple <see cref="E:System.Windows.Forms.Control.Layout" /> events while you adjust multiple attributes of the control. For example, you would typically call the <see cref="M:System.Windows.Forms.Control.SuspendLayout" /> method, then set the <see cref="P:System.Windows.Forms.Control.Size" />, <see cref="P:System.Windows.Forms.Control.Location" />, <see cref="P:System.Windows.Forms.Control.Anchor" />, or <see cref="P:System.Windows.Forms.Control.Dock" /> properties of the control, and then call the <see cref="M:System.Windows.Forms.Control.ResumeLayout" /> method to enable the changes to take effect.</para><para>There must be no pending calls to <see cref="M:System.Windows.Forms.Control.SuspendLayout" /> for <see cref="M:System.Windows.Forms.Control.ResumeLayout" /> to be successfully called.</para><block subset="none" type="note"><para>When adding several controls to a parent control, it is recommended that you call the <see cref="M:System.Windows.Forms.Control.SuspendLayout" /> method before initializing the controls to be added. After adding the controls to the parent control, call the <see cref="M:System.Windows.Forms.Control.ResumeLayout" /> method. This will increase the performance of applications with many controls.</para></block></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Temporarily suspends the layout logic for the control.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="System.Windows.Forms.IDropTarget.OnDragDrop"><MemberSignature Language="C#" Value="void IDropTarget.OnDragDrop (System.Windows.Forms.DragEventArgs drgEvent);" /><MemberType>Method</MemberType><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="drgEvent" Type="System.Windows.Forms.DragEventArgs" /></Parameters><Docs><remarks>To be added.</remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Raises the <see cref="E:System.Windows.Forms.Control.DragDrop" /> event.</para></summary><param name="drgEvent"><attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.DragEventArgs" /> that contains the event data. </param></Docs></Member><Member MemberName="System.Windows.Forms.IDropTarget.OnDragEnter"><MemberSignature Language="C#" Value="void IDropTarget.OnDragEnter (System.Windows.Forms.DragEventArgs drgEvent);" /><MemberType>Method</MemberType><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="drgEvent" Type="System.Windows.Forms.DragEventArgs" /></Parameters><Docs><remarks>To be added.</remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Raises the <see cref="E:System.Windows.Forms.Control.DragEnter" /> event.</para></summary><param name="drgEvent"><attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.DragEventArgs" /> that contains the event data. </param></Docs></Member><Member MemberName="System.Windows.Forms.IDropTarget.OnDragLeave"><MemberSignature Language="C#" Value="void IDropTarget.OnDragLeave (EventArgs e);" /><MemberType>Method</MemberType><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="e" Type="System.EventArgs" /></Parameters><Docs><remarks>To be added.</remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Raises the <see cref="E:System.Windows.Forms.Control.DragLeave" /> event.</para></summary><param name="e"><attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.EventArgs" /> that contains the event data. </param></Docs></Member><Member MemberName="System.Windows.Forms.IDropTarget.OnDragOver"><MemberSignature Language="C#" Value="void IDropTarget.OnDragOver (System.Windows.Forms.DragEventArgs drgEvent);" /><MemberType>Method</MemberType><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="drgEvent" Type="System.Windows.Forms.DragEventArgs" /></Parameters><Docs><remarks>To be added.</remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Raises the <see cref="E:System.Windows.Forms.Control.DragOver" /> event.</para></summary><param name="drgEvent"><attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.DragEventArgs" /> that contains the event data. </param></Docs></Member><Member MemberName="SystemColorsChanged"><MemberSignature Language="C#" Value="public event EventHandler SystemColorsChanged;" /><MemberType>Event</MemberType><ReturnValue><ReturnType>System.EventHandler</ReturnType></ReturnValue><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>This event is raised if the <see cref="T:System.Drawing.SystemColors" /> is changed by either a programmatic modification or user interaction.</para><para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Occurs when the system colors change.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="TabIndex"><MemberSignature Language="C#" Value="public int TabIndex { set; get; }" /><MemberType>Property</MemberType><Attributes><Attribute><AttributeName>System.ComponentModel.MergableProperty(false)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.Localizable(true)</AttributeName></Attribute></Attributes><ReturnValue><ReturnType>System.Int32</ReturnType></ReturnValue><Docs><value>To be added.</value><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>A tab index can consist of any valid integer greater than or equal to zero, lower numbers being earlier in the tab order. If more than one control on the same parent control has the same tab index, the z-order of the controls determines the order to cycle through the controls.</para><para>For a control to be included in the tab order, its <see cref="P:System.Windows.Forms.Control.TabStop" /> property must be set to true.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets or sets the tab order of the control within its container.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="TabIndexChanged"><MemberSignature Language="C#" Value="public event EventHandler TabIndexChanged;" /><MemberType>Event</MemberType><ReturnValue><ReturnType>System.EventHandler</ReturnType></ReturnValue><Docs><since version=".NET 2.0" /><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>This event is raised if the <see cref="P:System.Windows.Forms.Control.TabIndex" /> property is changed by either a programmatic modification or user interaction.</para><para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Occurs when the <see cref="P:System.Windows.Forms.Control.TabIndex" /> property value changes.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="TabStop"><MemberSignature Language="C#" Value="public bool TabStop { set; get; }" /><MemberType>Property</MemberType><Attributes><Attribute><AttributeName>System.ComponentModel.DefaultValue(true)</AttributeName></Attribute><Attribute><AttributeName>System.Runtime.InteropServices.DispId(-516)</AttributeName></Attribute></Attributes><ReturnValue><ReturnType>System.Boolean</ReturnType></ReturnValue><Docs><value>To be added.</value><since version=".NET 2.0" /><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>When the user presses the TAB key, the input focus is set to the next control in the tab order. Controls with the <see cref="P:System.Windows.Forms.Control.TabStop" /> property value of false are not included in the collection of controls in the tab order. The tab order can be manipulated by setting the control's <see cref="P:System.Windows.Forms.Control.TabIndex" /> property value.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets or sets a value indicating whether the user can give the focus to this control using the TAB key.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="TabStopChanged"><MemberSignature Language="C#" Value="public event EventHandler TabStopChanged;" /><MemberType>Event</MemberType><ReturnValue><ReturnType>System.EventHandler</ReturnType></ReturnValue><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>This event is raised if the <see cref="P:System.Windows.Forms.Control.TabStop" /> property is changed by either a programmatic modification or user interaction.</para><para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Occurs when the <see cref="P:System.Windows.Forms.Control.TabStop" /> property value changes.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="Tag"><MemberSignature Language="C#" Value="public object Tag { set; get; }" /><MemberType>Property</MemberType><Attributes><Attribute><AttributeName>System.ComponentModel.DefaultValue(null)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.TypeConverter(typeof(System.ComponentModel.StringConverter))</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.Bindable(true)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.Localizable(false)</AttributeName></Attribute></Attributes><ReturnValue><ReturnType>System.Object</ReturnType></ReturnValue><Docs><value>To be added.</value><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Any type derived from the <see cref="T:System.Object" /> class can be assigned to this property. If the <see cref="P:System.Windows.Forms.Control.Tag" /> property is set through the Windows Forms designer, only text can be assigned.</para><para>A common use for the <see cref="P:System.Windows.Forms.Control.Tag" /> property is to store data that is closely associated with the control. For example, if you have a control that displays information about a customer, you might store a <see cref="T:System.Data.DataSet" /> that contains the customer's order history in that control's <see cref="P:System.Windows.Forms.Control.Tag" /> property so the data can be accessed quickly.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets or sets the object that contains data about the control.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="Text"><MemberSignature Language="C#" Value="public virtual string Text { set; get; }" /><MemberType>Property</MemberType><Attributes><Attribute><AttributeName>System.ComponentModel.Bindable(true)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.Localizable(true)</AttributeName></Attribute><Attribute><AttributeName>System.Runtime.InteropServices.DispId(-517)</AttributeName></Attribute></Attributes><ReturnValue><ReturnType>System.String</ReturnType></ReturnValue><Docs><value>To be added.</value><since version=".NET 2.0" /><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The <see cref="P:System.Windows.Forms.Control.Text" /> property of the control is used differently by each derived class. For example the <see cref="P:System.Windows.Forms.Control.Text" /> property of a <see cref="T:System.Windows.Forms.Form" /> is displayed in the title bar at the top of the form, is fairly small in character count, and usually displays the application or document name. However, the <see cref="P:System.Windows.Forms.Control.Text" /> property of a <see cref="T:System.Windows.Forms.RichTextBox" /> can be large and can include numerous nonvisual characters used to format the text. For example, the text displayed in a <see cref="T:System.Windows.Forms.RichTextBox" /> can be formatted by adjusting the <see cref="T:System.Drawing.Font" /> properties, or by the addition of spaces or tab characters to align the text.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets or sets the text associated with this control.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="TextChanged"><MemberSignature Language="C#" Value="public event EventHandler TextChanged;" /><MemberType>Event</MemberType><ReturnValue><ReturnType>System.EventHandler</ReturnType></ReturnValue><Docs><since version=".NET 2.0" /><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>This event is raised if the <see cref="P:System.Windows.Forms.Control.Text" /> property is changed by either a programmatic modification or user interaction.</para><para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Occurs when the <see cref="P:System.Windows.Forms.Control.Text" /> property value changes.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="Top"><MemberSignature Language="C#" Value="public int Top { set; get; }" /><MemberType>Property</MemberType><Attributes><Attribute><AttributeName>System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Hidden)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.Browsable(false)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Always)</AttributeName></Attribute></Attributes><ReturnValue><ReturnType>System.Int32</ReturnType></ReturnValue><Docs><value>To be added.</value><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The <see cref="P:System.Windows.Forms.Control.Top" /> property value is equivalent to the <see cref="P:System.Drawing.Point.Y" /> property of the <see cref="P:System.Windows.Forms.Control.Location" /> property value of the control.</para><para>Changes made to the <see cref="P:System.Windows.Forms.Control.Height" /> and <see cref="P:System.Windows.Forms.Control.Top" /> property values cause the <see cref="P:System.Windows.Forms.Control.Bottom" /> property value of the control to change.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets or sets the distance, in pixels, between the top edge of the control and the top edge of its container's client area.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="TopLevelControl"><MemberSignature Language="C#" Value="public System.Windows.Forms.Control TopLevelControl { get; }" /><MemberType>Property</MemberType><Attributes><Attribute><AttributeName>System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Hidden)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.Browsable(false)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes><ReturnValue><ReturnType>System.Windows.Forms.Control</ReturnType></ReturnValue><Docs><value>To be added.</value><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The top-level control is defined as the parent control that is not parented by another Windows Forms control. Typically, this is the outermost <see cref="T:System.Windows.Forms.Form" /> that the control is contained in. For example, if the control is contained on an MDI child <see cref="T:System.Windows.Forms.Form" />, then the top-level control is the Multiple Document Interface (MDI) parent <see cref="T:System.Windows.Forms.Form" />. If the control is not parented on a <see cref="T:System.Windows.Forms.Form" />, this property will return null.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets the parent control that is not parented by another Windows Forms control. Typically, this is the outermost <see cref="T:System.Windows.Forms.Form" /> that the control is contained in.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="Update"><MemberSignature Language="C#" Value="public void Update ();" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters /><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Executes any pending requests for painting.</para><para>There are two ways to repaint a form and its contents: </para><list type="bullet"><item><para>You can use one of the overloads of the <see cref="M:System.Windows.Forms.Control.Invalidate" /> method with the <see cref="M:System.Windows.Forms.Control.Update" /> method. </para></item><item><para>You can call the <see cref="M:System.Windows.Forms.Control.Refresh" /> method, which forces the control to redraw itself and all its children. This is equivalent to setting the <see cref="M:System.Windows.Forms.Control.Invalidate(System.Boolean)" /> method to true and using it with <see cref="M:System.Windows.Forms.Control.Update" />.</para></item></list><para>The <see cref="M:System.Windows.Forms.Control.Invalidate" /> method governs what gets painted or repainted. The <see cref="M:System.Windows.Forms.Control.Update" /> method governs when the painting or repainting occurs. If you use the <see cref="M:System.Windows.Forms.Control.Invalidate" /> and <see cref="M:System.Windows.Forms.Control.Update" /> methods together rather than calling <see cref="M:System.Windows.Forms.Control.Refresh" />, what gets repainted depends on which overload of <see cref="M:System.Windows.Forms.Control.Invalidate" /> you use. The <see cref="M:System.Windows.Forms.Control.Update" /> method just forces the control to be painted immediately, but the <see cref="M:System.Windows.Forms.Control.Invalidate" /> method governs what gets painted when you call the <see cref="M:System.Windows.Forms.Control.Update" /> method.</para><para>For more information, see the WM_PAINT topic of the "Painting and Drawing" section in the MSDN library at http://msdn.microsoft.com/library.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Causes the control to redraw the invalidated regions within its client area.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="UpdateBounds"><MemberSignature Language="C#" Value="protected void UpdateBounds ();" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters /><Docs><since version=".NET 2.0" /><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>If the new <see cref="P:System.Windows.Forms.Control.Size" /> of the control is different from the previous <see cref="T:System.Drawing.Size" />, the <see cref="E:System.Windows.Forms.Control.SizeChanged" /> event is raised. Likewise, if the <see cref="P:System.Windows.Forms.Control.Location" /> of the control changes, the <see cref="E:System.Windows.Forms.Control.LocationChanged" /> event is raised.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Updates the bounds of the control with the current size and location.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes></Member><Member MemberName="UpdateBounds"><MemberSignature Language="C#" Value="protected void UpdateBounds (int x, int y, int width, int height);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="x" Type="System.Int32" /><Parameter Name="y" Type="System.Int32" /><Parameter Name="width" Type="System.Int32" /><Parameter Name="height" Type="System.Int32" /></Parameters><Docs><since version=".NET 2.0" /><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>If the new <see cref="P:System.Windows.Forms.Control.Size" /> of the control if different from the previous <see cref="T:System.Drawing.Size" />, the <see cref="E:System.Windows.Forms.Control.SizeChanged" /> event is raised. Likewise, is the <see cref="P:System.Windows.Forms.Control.Location" /> of the control changes, the <see cref="E:System.Windows.Forms.Control.LocationChanged" /> event is raised.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Updates the bounds of the control with the specified size and location.</para></summary><param name="x"><attribution license="cc4" from="Microsoft" modified="false" />The <see cref="P:System.Drawing.Point.X" /> coordinate of the control. </param><param name="y"><attribution license="cc4" from="Microsoft" modified="false" />The <see cref="P:System.Drawing.Point.Y" /> coordinate of the control. </param><param name="width"><attribution license="cc4" from="Microsoft" modified="false" />The <see cref="P:System.Drawing.Size.Width" /> of the control. </param><param name="height"><attribution license="cc4" from="Microsoft" modified="false" />The <see cref="P:System.Drawing.Size.Height" /> of the control. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes></Member><Member MemberName="UpdateBounds"><MemberSignature Language="C#" Value="protected void UpdateBounds (int x, int y, int width, int height, int clientWidth, int clientHeight);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="x" Type="System.Int32" /><Parameter Name="y" Type="System.Int32" /><Parameter Name="width" Type="System.Int32" /><Parameter Name="height" Type="System.Int32" /><Parameter Name="clientWidth" Type="System.Int32" /><Parameter Name="clientHeight" Type="System.Int32" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>If the new <see cref="P:System.Windows.Forms.Control.Size" /> of the control is different from the previous <see cref="T:System.Drawing.Size" />, the <see cref="E:System.Windows.Forms.Control.SizeChanged" /> event is raised. Likewise, if the <see cref="P:System.Windows.Forms.Control.Location" /> of the control changes, the <see cref="E:System.Windows.Forms.Control.LocationChanged" /> event is raised.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Updates the bounds of the control with the specified size, location, and client size.</para></summary><param name="x"><attribution license="cc4" from="Microsoft" modified="false" />The <see cref="P:System.Drawing.Point.X" /> coordinate of the control. </param><param name="y"><attribution license="cc4" from="Microsoft" modified="false" />The <see cref="P:System.Drawing.Point.Y" /> coordinate of the control. </param><param name="width"><attribution license="cc4" from="Microsoft" modified="false" />The <see cref="P:System.Drawing.Size.Width" /> of the control. </param><param name="height"><attribution license="cc4" from="Microsoft" modified="false" />The <see cref="P:System.Drawing.Size.Height" /> of the control. </param><param name="clientWidth"><attribution license="cc4" from="Microsoft" modified="false" />The client <see cref="P:System.Drawing.Size.Width" /> of the control. </param><param name="clientHeight"><attribution license="cc4" from="Microsoft" modified="false" />The client <see cref="P:System.Drawing.Size.Height" /> of the control. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes></Member><Member MemberName="UpdateStyles"><MemberSignature Language="C#" Value="protected void UpdateStyles ();" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters /><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>This method calls the <see cref="P:System.Windows.Forms.Control.CreateParams" /> method to get the styles to apply. The styles assigned to the <see cref="P:System.Windows.Forms.CreateParams.Style" /> and <see cref="P:System.Windows.Forms.CreateParams.ExStyle" /> properties of the <see cref="T:System.Windows.Forms.CreateParams" /> assigned to the control's <see cref="P:System.Windows.Forms.Control.CreateParams" /> property are reapplied. The control is repainted to reflect the style changes if necessary.</para><para>The <see cref="M:System.Windows.Forms.Control.UpdateStyles" /> method has no effect if the <see cref="P:System.Windows.Forms.Control.IsHandleCreated" /> property value is false.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Forces the assigned styles to be reapplied to the control.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes></Member><Member MemberName="UpdateZOrder"><MemberSignature Language="C#" Value="protected void UpdateZOrder ();" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters /><Docs><since version=".NET 2.0" /><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The <see cref="M:System.Windows.Forms.Control.UpdateZOrder" /> method updates the position of the control in its parent control's z-order. For example, if this control is a newly created control that was added to a <see cref="T:System.Windows.Forms.Control.ControlCollection" />, the z-order is updated with the new control added to the back.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Updates the control in its parent's z-order.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName></Attribute></Attributes></Member><Member MemberName="UseWaitCursor"><MemberSignature Language="C#" Value="public bool UseWaitCursor { set; get; }" /><MemberType>Property</MemberType><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.DefaultValue(false)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.Browsable(true)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Always)</AttributeName></Attribute></Attributes><ReturnValue><ReturnType>System.Boolean</ReturnType></ReturnValue><Docs><value>To be added.</value><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Use a wait cursor whenever you perform an operation that takes a noticeable amount of time. However, note that operations that block the UI thread will also block a cursor change. Therefore, this property should only be used when performing time-consuming operations in another thread. To change the cursor globally and immediately, see the <see cref="P:System.Windows.Forms.Cursor.Current" /> property.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets or sets a value indicating whether to use the wait cursor for the current control and all child controls.</para></summary></Docs></Member><Member MemberName="Validated"><MemberSignature Language="C#" Value="public event EventHandler Validated;" /><MemberType>Event</MemberType><ReturnValue><ReturnType>System.EventHandler</ReturnType></ReturnValue><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>When you change the focus by using the keyboard (TAB, SHIFT+TAB, and so on), by calling the <see cref="M:System.Windows.Forms.Control.Select" /> or <see cref="M:System.Windows.Forms.Control.SelectNextControl(System.Windows.Forms.Control,System.Boolean,System.Boolean,System.Boolean,System.Boolean)" /> methods, or by setting the <see cref="P:System.Windows.Forms.ContainerControl.ActiveControl" /> property to the current form, focus events occur in the following order: </para><list type="ordered"><item><para><see cref="E:System.Windows.Forms.Control.Enter" /></para></item><item><para><see cref="E:System.Windows.Forms.Control.GotFocus" /></para></item><item><para><see cref="E:System.Windows.Forms.Control.Leave" /></para></item><item><para><see cref="E:System.Windows.Forms.Control.Validating" /></para></item><item><para><see cref="E:System.Windows.Forms.Control.Validated" /></para></item><item><para><see cref="E:System.Windows.Forms.Control.LostFocus" /></para></item></list><para>When you change the focus by using the mouse or by calling the <see cref="M:System.Windows.Forms.Control.Focus" /> method, focus events occur in the following order: </para><list type="ordered"><item><para><see cref="E:System.Windows.Forms.Control.Enter" /></para></item><item><para><see cref="E:System.Windows.Forms.Control.GotFocus" /></para></item><item><para><see cref="E:System.Windows.Forms.Control.LostFocus" /></para></item><item><para><see cref="E:System.Windows.Forms.Control.Leave" /></para></item><item><para><see cref="E:System.Windows.Forms.Control.Validating" /></para></item><item><para><see cref="E:System.Windows.Forms.Control.Validated" /></para></item></list><para>If the <see cref="P:System.Windows.Forms.Control.CausesValidation" /> property is set to false, the <see cref="E:System.Windows.Forms.Control.Validating" /> and <see cref="E:System.Windows.Forms.Control.Validated" /> events are suppressed.</para><para>If the <see cref="P:System.ComponentModel.CancelEventArgs.Cancel" /> property of the <see cref="T:System.ComponentModel.CancelEventArgs" /> is set to true in the <see cref="E:System.Windows.Forms.Control.Validating" /> event delegate, all events that would usually occur after the <see cref="E:System.Windows.Forms.Control.Validating" /> event are suppressed.</para><block subset="none" type="note"><para>Do not attempt to set focus from within the <see cref="E:System.Windows.Forms.Control.Enter" />, <see cref="E:System.Windows.Forms.Control.GotFocus" />, <see cref="E:System.Windows.Forms.Control.Leave" />, <see cref="E:System.Windows.Forms.Control.LostFocus" />, <see cref="E:System.Windows.Forms.Control.Validating" />, or <see cref="E:System.Windows.Forms.Control.Validated" /> event handlers. Doing so can cause your application or the operating system to stop responding. For more information, see the WM_KILLFOCUS topic in the "Keyboard Input Reference" section, and the "Message Deadlocks" section of the "About Messages and Message Queues" topic in the MSDN library at http://msdn.microsoft.com/library.</para></block><para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Occurs when the control is finished validating.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="Validating"><MemberSignature Language="C#" Value="public event System.ComponentModel.CancelEventHandler Validating;" /><MemberType>Event</MemberType><ReturnValue><ReturnType>System.ComponentModel.CancelEventHandler</ReturnType></ReturnValue><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>When you change the focus by using the keyboard (TAB, SHIFT+TAB, and so on), by calling the <see cref="M:System.Windows.Forms.Control.Select" /> or <see cref="M:System.Windows.Forms.Control.SelectNextControl(System.Windows.Forms.Control,System.Boolean,System.Boolean,System.Boolean,System.Boolean)" /> methods, or by setting the <see cref="P:System.Windows.Forms.ContainerControl.ActiveControl" /> property to the current form, focus events occur in the following order: </para><list type="ordered"><item><para><see cref="E:System.Windows.Forms.Control.Enter" /></para></item><item><para><see cref="E:System.Windows.Forms.Control.GotFocus" /></para></item><item><para><see cref="E:System.Windows.Forms.Control.Leave" /></para></item><item><para><see cref="E:System.Windows.Forms.Control.Validating" /></para></item><item><para><see cref="E:System.Windows.Forms.Control.Validated" /></para></item><item><para><see cref="E:System.Windows.Forms.Control.LostFocus" /></para></item></list><para>When you change the focus by using the mouse or by calling the <see cref="M:System.Windows.Forms.Control.Focus" /> method, focus events occur in the following order: </para><list type="ordered"><item><para><see cref="E:System.Windows.Forms.Control.Enter" /></para></item><item><para><see cref="E:System.Windows.Forms.Control.GotFocus" /></para></item><item><para><see cref="E:System.Windows.Forms.Control.LostFocus" /></para></item><item><para><see cref="E:System.Windows.Forms.Control.Leave" /></para></item><item><para><see cref="E:System.Windows.Forms.Control.Validating" /></para></item><item><para><see cref="E:System.Windows.Forms.Control.Validated" /></para></item></list><para>If the <see cref="P:System.Windows.Forms.Control.CausesValidation" /> property is set to false, the <see cref="E:System.Windows.Forms.Control.Validating" /> and <see cref="E:System.Windows.Forms.Control.Validated" /> events are suppressed.</para><para>If the <see cref="P:System.ComponentModel.CancelEventArgs.Cancel" /> property of the <see cref="T:System.ComponentModel.CancelEventArgs" /> is set to true in the <see cref="E:System.Windows.Forms.Control.Validating" /> event delegate, all events that would usually occur after the <see cref="E:System.Windows.Forms.Control.Validating" /> event are suppressed.</para><block subset="none" type="note"><para>Do not attempt to set focus from within the <see cref="E:System.Windows.Forms.Control.Enter" />, <see cref="E:System.Windows.Forms.Control.GotFocus" />, <see cref="E:System.Windows.Forms.Control.Leave" />, <see cref="E:System.Windows.Forms.Control.LostFocus" />, <see cref="E:System.Windows.Forms.Control.Validating" />, or <see cref="E:System.Windows.Forms.Control.Validated" /> event handlers. Doing so can cause your application or the operating system to stop responding. For more information, see the WM_KILLFOCUS topic in the "Keyboard Input Reference" section, and the "Message Deadlocks" section of the "About Messages and Message Queues" topic in the MSDN library at http://msdn.microsoft.com/library.</para></block><para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Occurs when the control is validating.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="Visible"><MemberSignature Language="C#" Value="public bool Visible { set; get; }" /><MemberType>Property</MemberType><Attributes><Attribute><AttributeName>System.ComponentModel.Localizable(true)</AttributeName></Attribute></Attributes><ReturnValue><ReturnType>System.Boolean</ReturnType></ReturnValue><Docs><value>To be added.</value><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para> Note that even if Visible is set to true, the control might not be visible to the user if it is obscured behind other controls.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets or sets a value indicating whether the control and all its child controls are displayed.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="VisibleChanged"><MemberSignature Language="C#" Value="public event EventHandler VisibleChanged;" /><MemberType>Event</MemberType><ReturnValue><ReturnType>System.EventHandler</ReturnType></ReturnValue><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>This event is raised if the <see cref="P:System.Windows.Forms.Control.Visible" /> property is changed by either a programmatic modification or user interaction.</para><para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Occurs when the <see cref="P:System.Windows.Forms.Control.Visible" /> property value changes.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="Width"><MemberSignature Language="C#" Value="public int Width { set; get; }" /><MemberType>Property</MemberType><Attributes><Attribute><AttributeName>System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Hidden)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.Browsable(false)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Always)</AttributeName></Attribute></Attributes><ReturnValue><ReturnType>System.Int32</ReturnType></ReturnValue><Docs><value>To be added.</value><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Changes made to the <see cref="P:System.Windows.Forms.Control.Width" /> and <see cref="P:System.Windows.Forms.Control.Left" /> property values cause the <see cref="P:System.Windows.Forms.Control.Right" /> property value of the control to change.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets or sets the width of the control.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="WindowTarget"><MemberSignature Language="C#" Value="public System.Windows.Forms.IWindowTarget WindowTarget { set; get; }" /><MemberType>Property</MemberType><Attributes><Attribute><AttributeName>System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Hidden)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.Browsable(false)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName></Attribute></Attributes><ReturnValue><ReturnType>System.Windows.Forms.IWindowTarget</ReturnType></ReturnValue><Docs><value>To be added.</value><since version=".NET 2.0" /><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>This property is not relevant for this class.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>This property is not relevant for this class.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="WndProc"><MemberSignature Language="C#" Value="protected virtual void WndProc (ref System.Windows.Forms.Message m);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="m" Type="System.Windows.Forms.Message&amp;" RefType="ref" /></Parameters><Docs><param name="m">To be added.</param><summary>To be added.</summary><remarks>To be added.</remarks><since version=".NET 2.0" /></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member></Members></Type>