Files
wg_cpso/CPSO/Forms/IFormBase.cs
2026-03-25 18:20:24 +08:00

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