12 lines
268 B
C#
12 lines
268 B
C#
namespace CPSO.Forms
|
|
{
|
|
interface IFormBase
|
|
{
|
|
bool PrepareForm(string stepName, string itemToEdit);
|
|
bool Visible { get; set; }
|
|
string Text { get; set; }
|
|
void Show();
|
|
System.Drawing.Point Location { get; set; }
|
|
}
|
|
}
|