misu – Diff between revs 1 and 7

Subversion Repositories:
Rev:
Show entire fileIgnore whitespace
Rev 1 Rev 7
Line 1... Line 1...
1 using System; 1 using System;
2 using Configuration; 2 using System.Collections.Specialized;
Line 3... Line 3...
3   3  
4 namespace misu 4 namespace misu
5 { 5 {
6 public class KeyBoundEventArgs : EventArgs 6 public class KeyBoundEventArgs : EventArgs
7 { 7 {
8 #region Public Enums, Properties and Fields -  
9   -  
10 public Binding Binding { get; } -  
11   8 #region Public Enums, Properties and Fields
Line 12... Line 9...
12 #endregion 9 #endregion
Line 13... Line 10...
13   10  
14 #region Constructors, Destructors and Finalizers 11 #region Constructors, Destructors and Finalizers
15   -  
16 public KeyBoundEventArgs(Binding boundKeys) 12  
Line 17... Line 13...
17 { 13 public KeyBoundEventArgs()
18 Binding = boundKeys; 14 {
19 } 15 }
20   16