Rename Command.Select to Command.Activate and Selecting to Activating

Co-authored-by: tig <585482+tig@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2025-12-08 23:17:06 +00:00
parent b905431029
commit e3a4331056
49 changed files with 164 additions and 163 deletions

View File

@@ -195,7 +195,7 @@ public class MouseEventRoutingTests (ITestOutputHelper output)
superView.Add (subView);
int selectingCount = 0;
subView.Selecting += (_, _) => selectingCount++;
subView.Activating += (_, _) => selectingCount++;
MouseEventArgs mouseEvent = new ()
{
@@ -395,7 +395,7 @@ public class MouseEventRoutingTests (ITestOutputHelper output)
};
bool selectingCalled = false;
view.Selecting += (_, _) => { selectingCalled = true; };
view.Activating += (_, _) => { selectingCalled = true; };
MouseEventArgs mouseEvent = new ()
{
@@ -468,7 +468,7 @@ public class MouseEventRoutingTests (ITestOutputHelper output)
superView.Add (view);
int selectingCount = 0;
view.Selecting += (_, _) => selectingCount++;
view.Activating += (_, _) => selectingCount++;
MouseEventArgs mouseEvent = new ()
{