main
 1using System.Windows.Forms;
 2
 3namespace momoney.presentation.views
 4{
 5    public interface IApplicationWindow : IView
 6    {
 7        IApplicationWindow titled(string title);
 8        IApplicationWindow create_tool_tip_for(string title, string caption, Control control);
 9        IApplicationWindow try_to_reduce_flickering();
10        IApplicationWindow top_most();
11    }
12}