ScrollableControlDesigner.cs 870 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. //
  2. // System.Windows.Forms.Design.ComponentEditorForm.cs
  3. //
  4. // Author:
  5. // Dennis Hayes ([email protected])
  6. // (C) 2002 Ximian, Inc. http://www.ximian.com
  7. //
  8. using System;
  9. using System.Drawing;
  10. namespace System.Windows.Forms.Design
  11. {
  12. public class ScrollableControlDesigner : ParentControlDesigner
  13. {
  14. #region Public Instance Constructors
  15. [MonoTODO]
  16. public ScrollableControlDesigner ()
  17. {
  18. throw new NotImplementedException ();
  19. }
  20. #endregion Public Instance Constructors
  21. #region Override implementation of ParentControlDesigner
  22. [MonoTODO]
  23. protected override bool GetHitTest (Point pt)
  24. {
  25. throw new NotImplementedException ();
  26. }
  27. [MonoTODO]
  28. protected override void WndProc (ref Message m)
  29. {
  30. throw new NotImplementedException ();
  31. }
  32. #endregion Override implementation of ParentControlDesigner
  33. }
  34. }