blob: 4f6d3507e5e0c565c8dac3fbccf46fd9828a7ecc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
using System.Windows.Forms;
namespace MoMoney.Presentation.Views
{
public interface IApplicationWindow : IView
{
IApplicationWindow titled(string title);
IApplicationWindow create_tool_tip_for(string title, string caption, Control control);
IApplicationWindow try_to_reduce_flickering();
IApplicationWindow top_most();
}
}
|