AnchorEditor.cs 944 B

1234567891011121314151617181920212223242526272829303132333435
  1. //
  2. // System.Windows.Forms.Design.AnchorEditor.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.Design;
  10. using System.ComponentModel;
  11. using System.Runtime.Remoting;
  12. namespace System.Windows.Forms.Design
  13. {
  14. /// <summary>
  15. /// Summary description for AnchorEditor.
  16. /// </summary>
  17. [MonoTODO]
  18. public sealed class AnchorEditor : UITypeEditor {
  19. [MonoTODO]
  20. public AnchorEditor() {
  21. //
  22. // TODO: Add constructor logic here
  23. //
  24. }
  25. // [MonoTODO]
  26. // public override object EditValue(ITypeDescriptorContext context, IServiceProvider provider, Object value){
  27. // throw new NotImplementedException ();
  28. // }
  29. // Documented, but not implmented by Mictosoft?
  30. // [MonoTODO]
  31. // public override UITypeEditorEditStyle GetEditStyle(ITypeDescriptorContext context){
  32. // throw new NotImplementedException ();
  33. // }
  34. }
  35. }