Widow – Blame information for rev 13

Subversion Repositories:
Rev:
Rev Author Line No. Line
13 office 1 using System;
2  
3 namespace Widow
4 {
5 public class WindowDrawnEventArgs : EventArgs
6 {
7 #region Public Enums, Properties and Fields
8  
9 public int Left { get; set; }
10  
11 public int Top { get; set; }
12  
13 public int Width { get; set; }
14  
15 public int Height { get; set; }
16  
17 #endregion
18  
19 #region Constructors, Destructors and Finalizers
20  
21 public WindowDrawnEventArgs()
22 {
23 }
24  
25 public WindowDrawnEventArgs(int left, int top, int width, int height) : this()
26 {
27 Left = left;
28 Top = top;
29 Width = width;
30 Height = height;
31 }
32  
33 #endregion
34 }
35 }