summaryrefslogtreecommitdiff
path: root/product/Presentation/Views/IWindowEvents.cs
blob: d939a54549e235e6b99db38e6a4604c9877e39c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
using System;
using System.ComponentModel;

namespace MoMoney.Presentation.Views
{
    public interface IWindowEvents
    {
        ControlAction<EventArgs> activated { get; set; }
        ControlAction<EventArgs> deactivated { get; set; }
        ControlAction<EventArgs> closed { get; set; }
        ControlAction<CancelEventArgs> closing { get; set; }
    }
}