MenuCommand.cs 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. // System.ComponentModel.Design.MenuCommand.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 MenuCommand
  13. {
  14. [MonoTODO]
  15. public MenuCommand (EventHandler handler, CommandID command) {
  16. throw new NotImplementedException ();
  17. }
  18. [MonoTODO]
  19. public virtual bool Checked
  20. {
  21. get {
  22. throw new NotImplementedException ();
  23. }
  24. set {
  25. throw new NotImplementedException ();
  26. }
  27. }
  28. [MonoTODO]
  29. public virtual CommandID CommandID
  30. {
  31. get {
  32. throw new NotImplementedException ();
  33. }
  34. }
  35. [MonoTODO]
  36. public virtual bool Enabled
  37. {
  38. get {
  39. throw new NotImplementedException ();
  40. }
  41. set {
  42. throw new NotImplementedException ();
  43. }
  44. }
  45. [MonoTODO]
  46. public virtual int OleStatus
  47. {
  48. get {
  49. throw new NotImplementedException ();
  50. }
  51. set {
  52. throw new NotImplementedException ();
  53. }
  54. }
  55. [MonoTODO]
  56. public virtual bool Supported
  57. {
  58. get {
  59. throw new NotImplementedException ();
  60. }
  61. set {
  62. throw new NotImplementedException ();
  63. }
  64. }
  65. [MonoTODO]
  66. public virtual bool Visible
  67. {
  68. get {
  69. throw new NotImplementedException ();
  70. }
  71. set {
  72. throw new NotImplementedException ();
  73. }
  74. }
  75. [MonoTODO]
  76. public virtual void Invoke()
  77. {
  78. throw new NotImplementedException ();
  79. }
  80. [MonoTODO]
  81. protected virtual void OnCommandChanged (EventArgs e)
  82. {
  83. throw new NotImplementedException ();
  84. }
  85. [MonoTODO]
  86. public override string ToString()
  87. {
  88. throw new NotImplementedException ();
  89. }
  90. public event EventHandler CommandChanged;
  91. }
  92. }