Widow – Blame information for rev 11

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 using System;
2  
3 namespace Widow
4 {
5 public class WindowDestroyedEventArgs : EventArgs
6 {
7 #region Public Enums, Properties and Fields
8  
9 public IntPtr Handle { get; set; }
10  
11 office 11 public string Title { get; set; }
1 office 12  
13 #endregion
14  
15 #region Constructors, Destructors and Finalizers
16  
17 public WindowDestroyedEventArgs()
18 {
19 }
20  
11 office 21 public WindowDestroyedEventArgs(string title, IntPtr handle) : this()
1 office 22 {
11 office 23 Title = title;
1 office 24 Handle = handle;
25 }
26  
27 #endregion
28 }
29 }