OnTopReplica/OnTopReplica/CloseRequestEventArgs.cs
Lorenz Cuno Klopfenstein c4866b743f Added files to ignore.
2013-10-15 14:47:24 +02:00

15 lines
294 B
C#

using System;
using System.Collections.Generic;
using System.Text;
using System.Drawing;
namespace OnTopReplica {
public class CloseRequestEventArgs : EventArgs {
public WindowHandle LastWindowHandle { get; set; }
public Rectangle? LastRegion { get; set; }
}
}