using System;
using System.Collections.Generic;
using System.Text;
using System.Windows.Forms;
namespace Mesnac.PlugIn.Pad
{
public class DefaultPadContent : Form, IPadContent
{
///
/// 面板控件集合
///
public Control Control
{
get
{
return this;
}
}
///
/// 重绘面板内容
///
public virtual void RedrawContent()
{
}
}
}