| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120 |
- //
- // System.Windows.Forms.ToolTip
- //
- // Author:
- // stubbed out by Jackson Harper ([email protected])
- // Dennis Hayes ([email protected])
- //
- // (C) 2002 Ximian, Inc
- //
- using System.ComponentModel;
- namespace System.Windows.Forms {
- // <summary>
- // This is only a template. Nothing is implemented yet.
- //
- // </summary>
- public sealed class ToolTip : Component, IExtenderProvider {
- //
- // --- Public Constructors
- //
- [MonoTODO]
- public ToolTip() {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public ToolTip(IContainer cont) {
- throw new NotImplementedException ();
- }
- //
- // --- Public Properties
- //
- [MonoTODO]
- public bool Active {
- get {
- throw new NotImplementedException ();
- }
- set {
- throw new NotImplementedException ();
- }
- }
- [MonoTODO]
- public int AutomaticDelay {
- get {
- throw new NotImplementedException ();
- }
- set {
- throw new NotImplementedException ();
- }
- }
- [MonoTODO]
- public int AutoPopDelay{
- get {
- throw new NotImplementedException ();
- }
- set {
- throw new NotImplementedException ();
- }
- }
- [MonoTODO]
- public int InitialDelay {
- get {
- throw new NotImplementedException ();
- }
- set {
- throw new NotImplementedException ();
- }
- }
- [MonoTODO]
- public int ReshowDelay {
- get {
- throw new NotImplementedException ();
- }
- set {
- throw new NotImplementedException ();
- }
- }
- [MonoTODO]
- public bool ShowAlways {
- get {
- throw new NotImplementedException ();
- }
- set {
- throw new NotImplementedException ();
- }
- }
-
- // --- Public Methods
-
- [MonoTODO]
- public void RemoveAll() {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public void SetToolTip(Control control, string caption) {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public override string ToString() {
- throw new NotImplementedException ();
- }
- //
- // --- Protected Methods
- //
- //inherited
- //protected override void Dispose(bool disposing) {
- // throw new NotImplementedException ();
- //}
- [MonoTODO]
- ~ToolTip() {
- throw new NotImplementedException ();
- }
- bool IExtenderProvider.CanExtend(object extendee){
- throw new NotImplementedException ();
- }
- }
- }
|