Explorar el Código

Fixed typo changing EventHandler to Action in UICatalog

tznind hace 4 años
padre
commit
4bb9d9ac66
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      UICatalog/Scenarios/TableEditor.cs

+ 1 - 1
UICatalog/Scenarios/TableEditor.cs

@@ -72,7 +72,7 @@ namespace UICatalog.Scenarios {
 
 			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 ()