Widow – Diff between revs 1 and 11

Subversion Repositories:
Rev:
Only display areas with differencesIgnore whitespace
Rev 1 Rev 11
1 using System; 1 using System;
2   2  
3 namespace Widow 3 namespace Widow
4 { 4 {
5 public class WindowCreatedEventArgs : EventArgs 5 public class WindowCreatedEventArgs : EventArgs
6 { 6 {
7 #region Public Enums, Properties and Fields 7 #region Public Enums, Properties and Fields
8   8  
9 public IntPtr Handle { get; set; } 9 public IntPtr Handle { get; set; }
10   10  
11 public string Name { get; set; } 11 public string Title { get; set; }
12   12  
13 #endregion 13 #endregion
14   14  
15 #region Constructors, Destructors and Finalizers 15 #region Constructors, Destructors and Finalizers
16   16  
17 public WindowCreatedEventArgs() 17 public WindowCreatedEventArgs()
18 { 18 {
19 } 19 }
20   20  
21 public WindowCreatedEventArgs(string name, IntPtr handle) : this() 21 public WindowCreatedEventArgs(string title, IntPtr handle) : this()
22 { 22 {
23 Name = name; 23 Title = title;
24 Handle = handle; 24 Handle = handle;
25 } 25 }
26   26  
27 #endregion 27 #endregion
28 } 28 }
29 } 29 }
30   30  
31
Generated by GNU Enscript 1.6.5.90.
31
Generated by GNU Enscript 1.6.5.90.
32   32  
33   33  
34   34