HamBook – Diff between revs 15 and 54

Subversion Repositories:
Rev:
Show entire fileIgnore whitespace
Rev 15 Rev 54
Line 1... Line -...
1 using HamBook; -  
2 using System.Windows.Forms; 1 using System.Windows.Forms;
Line 3... Line 2...
3   2  
4 namespace HamBook 3 namespace HamBook
5 { 4 {
6 public class DataGridViewRowProgressSuccess<T> : DataGridViewRowProgress 5 public class DataGridViewRowProgressSuccess<T> : DataGridViewRowProgress
7 { 6 {
Line 8... Line 7...
8 public T Data { get; } 7 public T Data { get; }
-   8  
9   9 #region Constructors, Destructors and Finalizers
10 #region Constructors, Destructors and Finalizers 10  
11 public DataGridViewRowProgressSuccess(DataGridViewRow row, int index) : base(row, index, true) 11 public DataGridViewRowProgressSuccess(DataGridViewRow row, int index) : base(row, index, true)
Line 12... Line 12...
12 { 12 {
13 } 13 }
14   14  
15 public DataGridViewRowProgressSuccess(DataGridViewRow row, int index, T data) : this(row, index) 15 public DataGridViewRowProgressSuccess(DataGridViewRow row, int index, T data) : this(row, index)
-   16 {
16 { 17 Data = data;
17 Data = data; 18 }
18 } 19  
19 #endregion 20 #endregion