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

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; }
    }
}