Files

24 lines
442 B
C#
Raw Permalink Normal View History

2026-08-27 11:21:58 -06:00
using System;
using System.Windows.Forms;
namespace Server.Helper.HexEditor;
public interface IKeyMouseEventHandler
{
void OnKeyPress(KeyPressEventArgs e);
void OnKeyDown(KeyEventArgs e);
void OnKeyUp(KeyEventArgs e);
void OnMouseDown(MouseEventArgs e);
void OnMouseDragged(MouseEventArgs e);
void OnMouseUp(MouseEventArgs e);
void OnMouseDoubleClick(MouseEventArgs e);
void OnGotFocus(EventArgs e);
}