ControlDesigner.cs 642 B

1234567891011121314151617181920212223242526272829
  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. namespace System.Windows.Forms.Design {
  10. /// <summary>
  11. /// Summary description for ControlDesigner.
  12. /// </summary>
  13. public class ControlDesigner {
  14. public ControlDesigner() {
  15. //
  16. // TODO: Add constructor logic here
  17. //
  18. }
  19. public class ControlDesignerAccessibleObject{
  20. public ControlDesignerAccessibleObject() {
  21. //
  22. // TODO: Add constructor logic here
  23. throw new NotImplementedException ();
  24. //
  25. }
  26. }
  27. }
  28. }