Widow – Blame information for rev 14
?pathlinks?
Rev | Author | Line No. | Line |
---|---|---|---|
14 | office | 1 | using System; |
2 | using Windows; |
||
3 | |||
4 | namespace Widow |
||
5 | { |
||
6 | public class WindowModification |
||
7 | { |
||
8 | #region Public Enums, Properties and Fields |
||
9 | |||
10 | public Window Window { get; set; } |
||
11 | |||
12 | public IntPtr Handle { get; set; } |
||
13 | |||
14 | #endregion |
||
15 | |||
16 | #region Constructors, Destructors and Finalizers |
||
17 | |||
18 | public WindowModification(IntPtr handle, Window window) |
||
19 | { |
||
20 | this.Handle = handle; |
||
21 | Window = window; |
||
22 | } |
||
23 | |||
24 | #endregion |
||
25 | } |
||
26 | } |