// // System.Windows.Forms.Design.ComponentEditorForm.cs // // Author: // Dennis Hayes (dennish@raytek.com) // (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 } }