using System;
using System.Collections.Generic;
using System.Text;
using System.Windows.Forms;
namespace Mesnac.PlugIn.Pad
{
///
/// 建立所有“工具”窗口的基础接口
/// “工具窗口”是指“属性”、“工具箱”、“解决方案”等窗口
///
public interface IPadContent : IDisposable
{
///
/// 返回面板对应的Windows控件
///
Control Control { get; }
///
/// 重绘面板中的所有组件
///
void RedrawContent();
}
}