16 lines
463 B
C#
16 lines
463 B
C#
using System.Windows.Forms;
|
|
|
|
namespace Pulsar.Server.Plugins
|
|
{
|
|
public interface IUIExtensionPlugin : IServerPlugin
|
|
{
|
|
TabPage[] CreateCustomTabs();
|
|
ToolStripItem[] CreateToolbarItems();
|
|
ToolStripMenuItem[] CreateMenuItems();
|
|
void CustomizeForm(Form form);
|
|
void CustomizeControl(Control control);
|
|
Form CreateCustomMainForm();
|
|
bool ShouldReplaceMainForm { get; }
|
|
int UIPriority { get; }
|
|
}
|
|
} |