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.
30 lines
540 B
C#
30 lines
540 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using System.Windows.Forms;
|
|
|
|
namespace Mesnac.PlugIn.Pad
|
|
{
|
|
public class DefaultPadContent : Form, IPadContent
|
|
{
|
|
/// <summary>
|
|
/// 面板控件集合
|
|
/// </summary>
|
|
public Control Control
|
|
{
|
|
get
|
|
{
|
|
return this;
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// 重绘面板内容
|
|
/// </summary>
|
|
public virtual void RedrawContent()
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|