pascalabcnet/VisualPascalABCNET/OptionsContent/IOptionsContent.cs
Бондарев Иван e6e67c193c initial commit
2015-05-14 21:35:07 +02:00

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);
}
}