mirror of
https://github.com/gui-cs/Terminal.Gui.git
synced 2026-01-01 16:59:35 +01:00
Selected->Selecting
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user