namespace Dashboard.Windowing { public interface IPaintable { event EventHandler Painting; /// /// Paint this paintable object. /// void Paint(); } }