DesignerVerb.cs 839 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. // System.ComponentModel.Design.DesignerVerb.cs
  2. //
  3. // Author:
  4. // Alejandro Sánchez Acosta <[email protected]>
  5. //
  6. // (C) Alejandro Sánchez Acosta
  7. //
  8. using System.Runtime.InteropServices;
  9. namespace System.ComponentModel.Design
  10. {
  11. [ComVisible(true)]
  12. public class DesignerVerb : MenuCommand
  13. {
  14. [MonoTODO]
  15. public DesignerVerb (string text, EventHandler handler) : base (handler, new CommandID (text)){
  16. throw new NotImplementedException ();
  17. }
  18. [MonoTODO]
  19. public DesignerVerb (string text, EventHandler handler, CommandID startCommandID)
  20. : base (handler, startCommandID) {
  21. throw new NotImplementedException ();
  22. }
  23. [MonoTODO]
  24. public string Text
  25. {
  26. get {
  27. throw new NotImplementedException ();
  28. }
  29. }
  30. [MonoTODO]
  31. public override string ToString()
  32. {
  33. throw new NotImplementedException ();
  34. }
  35. }
  36. }