| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- // System.ComponentModel.Design.DesignerVerb.cs
- //
- // Author:
- // Alejandro Sánchez Acosta <[email protected]>
- //
- // (C) Alejandro Sánchez Acosta
- //
- using System.Runtime.InteropServices;
- namespace System.ComponentModel.Design
- {
- [ComVisible(true)]
- public class DesignerVerb : MenuCommand
- {
- [MonoTODO]
- public DesignerVerb (string text, EventHandler handler) : base (handler, new CommandID (text)){
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public DesignerVerb (string text, EventHandler handler, CommandID startCommandID)
- : base (handler, startCommandID) {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public string Text
- {
- get {
- throw new NotImplementedException ();
- }
- }
- [MonoTODO]
- public override string ToString()
- {
- throw new NotImplementedException ();
- }
- }
- }
|