EventHandlerService.cs 805 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. //
  2. // System.Windows.Forms.Design.DockEditor.cs
  3. //
  4. // Author:
  5. // Gert Driesen ([email protected])
  6. //
  7. // (C) 2004 Novell
  8. //
  9. using System;
  10. namespace System.Windows.Forms.Design
  11. {
  12. public sealed class EventHandlerService
  13. {
  14. public event EventHandler EventHandlerChanged;
  15. public EventHandlerService (Control focusWnd)
  16. {
  17. _focusWnd = focusWnd;
  18. }
  19. [MonoTODO]
  20. public object GetHandler (Type handlerType)
  21. {
  22. throw new NotImplementedException ();
  23. }
  24. [MonoTODO]
  25. public void PopHandler (object handler)
  26. {
  27. throw new NotImplementedException ();
  28. }
  29. [MonoTODO]
  30. public void PushHandler (object handler)
  31. {
  32. throw new NotImplementedException ();
  33. }
  34. public Control FocusWindow {
  35. get {
  36. return _focusWnd;
  37. }
  38. }
  39. private readonly Control _focusWnd;
  40. }
  41. }