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