Skip to content
Merged

Fix typo #10595

Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions xml/System.Windows.Forms/Control.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9202,17 +9202,15 @@ MyControl.Font = New Font(MyControl.Font, _
<ReturnType>System.Windows.Forms.KeyPressEventHandler</ReturnType>
</ReturnValue>
<Docs>
<summary>Occurs when a character. space or backspace key is pressed while the control has focus.</summary>
<summary>Occurs when a character, space, or backspace key is pressed while the control has focus.</summary>
<remarks>
<format type="text/markdown"><![CDATA[

## Remarks
Key events occur in the following order:

1. <xref:System.Windows.Forms.Control.KeyDown>

2. <xref:System.Windows.Forms.Control.KeyPress>

3. <xref:System.Windows.Forms.Control.KeyUp>

The <xref:System.Windows.Forms.Control.KeyPress> event is not raised by non-character keys other than space and backspace; however, the non-character keys do raise the <xref:System.Windows.Forms.Control.KeyDown> and <xref:System.Windows.Forms.Control.KeyUp> events.
Expand Down