// // System.Windows.Forms.Timer // // Author: // stubbed out by Jackson Harper (jackson@latitudegeo.com) // Dennis Hayes (dennish@raytek.com) // // (C) 2002 Ximian, Inc // namespace System.Windows.Forms { // // This is only a template. Nothing is implemented yet. // // using System.ComponentModel; public class Timer : Component { // // --- Public Constructors // [MonoTODO] public Timer() { throw new NotImplementedException (); } [MonoTODO] public Timer(IContainer container) { throw new NotImplementedException (); } // // --- Public Properties // [MonoTODO] public virtual bool Enabled { get { throw new NotImplementedException (); } set { throw new NotImplementedException (); } } [MonoTODO] public int Interval { get { throw new NotImplementedException (); } set { throw new NotImplementedException (); } } // // --- Public Methods // [MonoTODO] public void Start() { throw new NotImplementedException (); } [MonoTODO] public void Stop() { throw new NotImplementedException (); } [MonoTODO] public override string ToString() { throw new NotImplementedException (); } // // --- Public Events // [MonoTODO] public event EventHandler Tick; // // --- Protected Methods // //inherited //protected override void Dispose(bool disposing) //{ // throw new NotImplementedException (); //} [MonoTODO] protected virtual void OnTick(EventArgs e) { throw new NotImplementedException (); } } }