25 lines
486 B
C#
25 lines
486 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace VisualPascalABC.OptionsContent
|
|
{
|
|
public enum OptionsContentAction {Ok,Cancel,Show,Hide};
|
|
public interface IOptionsContent
|
|
{
|
|
string ContentName
|
|
{
|
|
get;
|
|
}
|
|
string Description
|
|
{
|
|
get;
|
|
}
|
|
System.Windows.Forms.UserControl Content
|
|
{
|
|
get;
|
|
}
|
|
void Action(OptionsContentAction action);
|
|
}
|
|
}
|