Selected->Selecting

This commit is contained in:
Tig
2024-10-07 07:38:11 -04:00
parent 5b0ca95acf
commit 2a989df553
19 changed files with 61 additions and 61 deletions

View File

@@ -521,7 +521,7 @@ public class TextFieldTests (ITestOutputHelper output)
{
TextField tf = new ();
tf.Selected += (sender, args) => Assert.Fail ("Selected should not be raied.");
tf.Selecting += (sender, args) => Assert.Fail ("Selected should not be raied.");
Application.Top = new Toplevel ();
Application.Top.Add (tf);
@@ -538,7 +538,7 @@ public class TextFieldTests (ITestOutputHelper output)
TextField tf = new ();
int selectedCount = 0;
tf.Selected += (sender, args) => selectedCount++;
tf.Selecting += (sender, args) => selectedCount++;
Application.Top = new Toplevel ();
Application.Top.Add (tf);