namespace Noetix.Generator.CommonUI { using System.Windows.Forms; public interface IPaintable { /// /// Call from OnPaint() to have this item render to the parent control /// void Paint(PaintEventArgs pe); } }