MyControlExt.cs 411 B

1234567891011121314151617
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using System.Windows.Forms;
  7. public delegate void UserOpertedControlHandler(Control control,object state);
  8. public interface IMyOperationalControl
  9. {
  10. event UserOpertedControlHandler OnUserOperatedControl;
  11. }
  12. public interface IKeyboardInputControl
  13. {
  14. bool UseSoftKeyboard { get; set; }
  15. }