// // // // // $Revision$ // using System; using System.Windows.Forms; namespace ICSharpCode.SharpDevelop.Gui { /// /// The IPadContent interface is the basic interface to all "tool" windows /// in SharpDevelop. /// public interface IPadContent : IDisposable { /// /// This is the UI element for the view. /// You can use both Windows.Forms and WPF controls. /// object Content { get; } /// /// Re-initializes all components of the pad. Don't call unless /// you know what you do. /// void RedrawContent(); } }