| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- //
- // System.Windows.Forms.Design.ComponentEditorForm.cs
- //
- // Author:
- // Dennis Hayes ([email protected])
- // (C) 2002 Ximian, Inc. http://www.ximian.com
- //
- using System;
- using System.Drawing;
- namespace System.Windows.Forms.Design
- {
- public class ScrollableControlDesigner : ParentControlDesigner
- {
- #region Public Instance Constructors
- [MonoTODO]
- public ScrollableControlDesigner ()
- {
- throw new NotImplementedException ();
- }
- #endregion Public Instance Constructors
- #region Override implementation of ParentControlDesigner
- [MonoTODO]
- protected override bool GetHitTest (Point pt)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- protected override void WndProc (ref Message m)
- {
- throw new NotImplementedException ();
- }
- #endregion Override implementation of ParentControlDesigner
- }
- }
|