Widow – Blame information for rev 1

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 public string Name { get; set; }
12  
13 #endregion
14  
15 #region Constructors, Destructors and Finalizers
16  
17 public WindowDestroyedEventArgs()
18 {
19 }
20  
21 public WindowDestroyedEventArgs(string name, IntPtr handle) : this()
22 {
23 Name = name;
24 Handle = handle;
25 }
26  
27 #endregion
28 }
29 }