tooltip.cs 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. //
  2. // System.Windows.Forms.ToolTip
  3. //
  4. // Author:
  5. // stubbed out by Jackson Harper ([email protected])
  6. // Dennis Hayes ([email protected])
  7. //
  8. // (C) 2002 Ximian, Inc
  9. //
  10. using System.ComponentModel;
  11. namespace System.Windows.Forms {
  12. // <summary>
  13. // This is only a template. Nothing is implemented yet.
  14. //
  15. // </summary>
  16. public sealed class ToolTip : Component, IExtenderProvider {
  17. //
  18. // --- Public Constructors
  19. //
  20. [MonoTODO]
  21. public ToolTip() {
  22. throw new NotImplementedException ();
  23. }
  24. [MonoTODO]
  25. public ToolTip(IContainer cont) {
  26. throw new NotImplementedException ();
  27. }
  28. //
  29. // --- Public Properties
  30. //
  31. [MonoTODO]
  32. public bool Active {
  33. get {
  34. throw new NotImplementedException ();
  35. }
  36. set {
  37. throw new NotImplementedException ();
  38. }
  39. }
  40. [MonoTODO]
  41. public int AutomaticDelay {
  42. get {
  43. throw new NotImplementedException ();
  44. }
  45. set {
  46. throw new NotImplementedException ();
  47. }
  48. }
  49. [MonoTODO]
  50. public int AutoPopDelay{
  51. get {
  52. throw new NotImplementedException ();
  53. }
  54. set {
  55. throw new NotImplementedException ();
  56. }
  57. }
  58. [MonoTODO]
  59. public int InitialDelay {
  60. get {
  61. throw new NotImplementedException ();
  62. }
  63. set {
  64. throw new NotImplementedException ();
  65. }
  66. }
  67. [MonoTODO]
  68. public int ReshowDelay {
  69. get {
  70. throw new NotImplementedException ();
  71. }
  72. set {
  73. throw new NotImplementedException ();
  74. }
  75. }
  76. [MonoTODO]
  77. public bool ShowAlways {
  78. get {
  79. throw new NotImplementedException ();
  80. }
  81. set {
  82. throw new NotImplementedException ();
  83. }
  84. }
  85. // --- Public Methods
  86. [MonoTODO]
  87. public void RemoveAll() {
  88. throw new NotImplementedException ();
  89. }
  90. [MonoTODO]
  91. public void SetToolTip(Control control, string caption) {
  92. throw new NotImplementedException ();
  93. }
  94. [MonoTODO]
  95. public override string ToString() {
  96. throw new NotImplementedException ();
  97. }
  98. //
  99. // --- Protected Methods
  100. //
  101. //inherited
  102. //protected override void Dispose(bool disposing) {
  103. // throw new NotImplementedException ();
  104. //}
  105. [MonoTODO]
  106. ~ToolTip() {
  107. throw new NotImplementedException ();
  108. }
  109. bool IExtenderProvider.CanExtend(object extendee){
  110. throw new NotImplementedException ();
  111. }
  112. }
  113. }