OnTopReplica/OnTopReplica/CloseRequestEventArgs.cs
2013-05-03 18:16:42 +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; }
}
}