Browse Source

Fixed typo changing EventHandler to Action in UICatalog

tznind 4 years ago
parent
commit
4bb9d9ac66
1 changed files with 1 additions and 1 deletions
  1. 1 1
      UICatalog/Scenarios/TableEditor.cs

+ 1 - 1
UICatalog/Scenarios/TableEditor.cs

@@ -72,7 +72,7 @@ namespace UICatalog.Scenarios {
 
 
 			Win.Add(selectedCellLabel);
 			Win.Add(selectedCellLabel);
 
 
-			tableView.SelectedCellChanged += (s,e)=>{selectedCellLabel.Text = $"{tableView.SelectedRow},{tableView.SelectedColumn}";};
+			tableView.SelectedCellChanged += (e)=>{selectedCellLabel.Text = $"{tableView.SelectedRow},{tableView.SelectedColumn}";};
 		}
 		}
 
 
 		private void ClearColumnStyles ()
 		private void ClearColumnStyles ()