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

@@ -271,10 +271,10 @@ public class CheckBoxTests (ITestOutputHelper output)
ckb.CheckedState = initialState;
ckb.Selecting += OnActivating;
ckb.Activating += OnActivating;
Assert.Equal (initialState, ckb.CheckedState);
bool? ret = ckb.InvokeCommand (Command.Select);
bool? ret = ckb.InvokeCommand (Command.Activate);
Assert.True (ret);
Assert.True (checkedInvoked);
Assert.Equal (initialState, ckb.CheckedState);