| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109 |
- // System.ComponentModel.Design.MenuCommand.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 MenuCommand
- {
- [MonoTODO]
- public MenuCommand (EventHandler handler, CommandID command) {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public virtual bool Checked
- {
- get {
- throw new NotImplementedException ();
- }
-
- set {
- throw new NotImplementedException ();
- }
- }
- [MonoTODO]
- public virtual CommandID CommandID
- {
- get {
- throw new NotImplementedException ();
- }
- }
- [MonoTODO]
- public virtual bool Enabled
- {
- get {
- throw new NotImplementedException ();
- }
-
- set {
- throw new NotImplementedException ();
- }
- }
- [MonoTODO]
- public virtual int OleStatus
- {
- get {
- throw new NotImplementedException ();
- }
- set {
- throw new NotImplementedException ();
- }
- }
- [MonoTODO]
- public virtual bool Supported
- {
- get {
- throw new NotImplementedException ();
- }
-
- set {
- throw new NotImplementedException ();
- }
- }
- [MonoTODO]
- public virtual bool Visible
- {
- get {
- throw new NotImplementedException ();
- }
-
- set {
- throw new NotImplementedException ();
- }
- }
- [MonoTODO]
- public virtual void Invoke()
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- protected virtual void OnCommandChanged (EventArgs e)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public override string ToString()
- {
- throw new NotImplementedException ();
- }
-
- public event EventHandler CommandChanged;
- }
- }
|