You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
617 B
C#

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