| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- //
- // System.Windows.Forms.Design.DockEditor.cs
- //
- // Author:
- // Gert Driesen ([email protected])
- //
- // (C) 2004 Novell
- //
- using System;
- namespace System.Windows.Forms.Design
- {
- public sealed class EventHandlerService
- {
- public event EventHandler EventHandlerChanged;
- public EventHandlerService (Control focusWnd)
- {
- _focusWnd = focusWnd;
- }
- [MonoTODO]
- public object GetHandler (Type handlerType)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public void PopHandler (object handler)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public void PushHandler (object handler)
- {
- throw new NotImplementedException ();
- }
- public Control FocusWindow {
- get {
- return _focusWnd;
- }
- }
- private readonly Control _focusWnd;
- }
- }
|