Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.ExtLibs/HeuristicLab.Netron/3.0.2672.12446/Netron.Diagramming.Core-3.0.2672.12446/Core/Interfaces/IKeyboardListener.cs @ 4068

Last change on this file since 4068 was 4068, checked in by swagner, 14 years ago

Sorted usings and removed unused usings in entire solution (#1094)

File size: 742 bytes
Line 
1using System.Windows.Forms;
2namespace Netron.Diagramming.Core {
3  public interface IKeyboardListener : IInteraction {
4
5    /// <summary>
6    /// on key down.
7    /// </summary>
8    /// <param name="e">The <see cref="T:KeyEventArgs"/> instance containing the event data.</param>
9    void KeyDown(KeyEventArgs e);
10
11    /// <summary>
12    /// On keys up.
13    /// </summary>
14    /// <param name="e">The <see cref="T:KeyEventArgs"/> instance containing the event data.</param>
15    void KeyUp(KeyEventArgs e);
16
17    /// <summary>
18    /// On key pressed.
19    /// </summary>
20    /// <param name="e">The <see cref="T:KeyPressEventArgs"/> instance containing the event data.</param>
21    void KeyPress(KeyPressEventArgs e);
22
23  }
24}
Note: See TracBrowser for help on using the repository browser.