Skip to content
Open
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
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ These are extension methods.
```csharp
using Codeer.Friendly.Windows.KeyMouse;
```
Keybord emulate.
Keyboard emulate.
```csharp
var window = WindowControl.FromZTop(app);
var target = new FormsTextBox(window.Dynamic()._keyTest);
Expand Down Expand Up @@ -65,7 +65,7 @@ var dropTarget = new WindowControl(window.Dynamic()._dropTest);
target.MouseDown(MouseButtonType.Left, new Point(0, 0));
dropTarget.MouseUp(MouseButtonType.Left, new Point(2, 3));
```
Keybord and Mouse emulate.
Keyboard and Mouse emulate.
```csharp
var window = WindowControl.FromZTop(app);
var target = new WindowControl(window.Dynamic()._keyMouseTest);
Expand All @@ -75,3 +75,4 @@ app.KeyDown(Keys.Menu);
target.Click():
app.KeyUp(Keys.Menu);
```