Skip to content

Don't enter a KeyboardNavigationMode.None group via its active element - #22154

Open
ethanstoner wants to merge 3 commits into
AvaloniaUI:mainfrom
ethanstoner:fix/tabnavigation-none-active-element
Open

Don't enter a KeyboardNavigationMode.None group via its active element#22154
ethanstoner wants to merge 3 commits into
AvaloniaUI:mainfrom
ethanstoner:fix/tabnavigation-none-active-element

Conversation

@ethanstoner

Copy link
Copy Markdown

Fixes #22048.

Split into the two commits the contributing guide asks for: the failing tests first, then the fix.

Root cause

GetNextTab and GetPrevTab fall back to TabOnceActiveElement when entering a container, and neither checked the navigation mode first:

if (e == null)
{
    if (IsTabStop(container))
        return container;

    // Using ActiveElement if set
    var activeElement = GetActiveElement(container);
    if (activeElement != null)
        return GetNextTab(null, activeElement, true);
}

ItemsControl.OnGotFocus records the last focused child as that active element:

// If the focus is coming from a child control, set the tab once active element to
// the focused control. This ensures that tabbing back into the control will focus
// the last focused control when TabNavigationMode == Once.
if (e.Source != this && e.Source is IInputElement ie)
    KeyboardNavigation.SetTabOnceActiveElement(this, ie);

So once a ListBox item has been focused, the ListBox has an active element pointing inside itself, and Tab enters it even with TabNavigation="None". GetNextTabInGroup already returns null for None, so the group walk was correct; only this fallback leaked.

This also explains the asymmetry in the report. TreeView is not inherently better behaved here, it just had no focused item in the repro and therefore no active element. A TreeView whose item has been focused should show the same bug.

The fix

A None group never hands out an element inside itself, not even a remembered one. GetNextTab skips the active-element lookup for None and falls through to the existing group walk, which already returns nothing for None; GetPrevTab does the same.

I deliberately left IsTabStop(container) above it alone. None governs navigation within the group, and a container that is itself a tab stop should still be reachable, which matches WPF. Changing that would be a wider behavioural change than this issue calls for.

Tests

Two new tests in KeyboardNavigationTests_Tab, one per direction. Both fail on the first commit and pass on the second:

failed ...KeyboardNavigationTests_Tab.Next_None_Skips_Container_With_Active_Element_Inside
failed ...KeyboardNavigationTests_Tab.Previous_None_Skips_Container_With_Active_Element_Inside
  total: 3440   failed: 2   succeeded: 3426

after the fix:

  total: 3440   failed: 0   succeeded: 3428   skipped: 12

Worth noting why this was not already covered: the existing Next_None_Skips_Container does call SetTabOnceActiveElement, but points it at a button in a sibling panel, which is also the expected result, so the assertion passes whether or not the fallback fires.

Avalonia.Controls.UnitTests as well, since this is a shared navigation path: 3915 total, 0 failed, 3914 succeeded, 1 skipped.

Windows, .NET 10, Release.

Not verified

I have not run the attached sample app, only the unit tests, so I have not confirmed the end-to-end fix in a real window. I also have not checked whether TreeView reproduces the same bug once one of its items has been focused, though the analysis above says it should.

AI usage

Per the contributing guide, which accepts AI-assisted contributions but wants a human in the loop: Claude Code (Claude Opus 5) helped locate the cause and draft this. I reviewed the diff and ran all the test runs above myself, and will handle review comments personally.

A container with KeyboardNavigationMode.None is still entered when it has
a TabOnceActiveElement pointing at one of its own children. The existing
Next_None_Skips_Container sets the active element to a button outside the
container, so it never covered this.
GetNextTab and GetPrevTab fall back to TabOnceActiveElement when entering
a container, without checking the navigation mode. ItemsControl.OnGotFocus
records the last focused child as that active element, so once a ListBox
item has been focused the ListBox is entered on Tab even with
KeyboardNavigation.TabNavigation="None". A TreeView with no focused item
has no active element, which is why it looked like it behaved correctly.

A None group now never hands out an element inside itself.
@avaloniaui-bot

Copy link
Copy Markdown

You can test this PR using the following package version. 12.2.999-cibuild0069463-alpha. (feed url: https://nuget-feed-all.avaloniaui.net/v3/index.json) [PRBUILDID]

@cla-avalonia

Copy link
Copy Markdown
Collaborator

@ethanstoner,

Please read the following Contributor License Agreement (CLA). If you agree with the CLA, please reply with the following:

@cla-avalonia agree
Contributor License Agreement

Contribution License Agreement

This Contribution License Agreement ( “Agreement” ) is agreed to by the party signing below ( “You” ),
and conveys certain license rights to the AvaloniaUI OÜ ( “AvaloniaUI OÜ” ) for Your contributions to
AvaloniaUI OÜ open source projects. This Agreement is effective as of the latest signature date below.

1. Definitions.

“Code” means the computer software code, whether in human-readable or machine-executable form,
that is delivered by You to AvaloniaUI OÜ under this Agreement.

“Project” means any of the projects owned or managed by AvaloniaUI OÜ and offered under a license
approved by the Open Source Initiative (www.opensource.org).

“Submit” is the act of uploading, submitting, transmitting, or distributing code or other content to any
Project, including but not limited to communication on electronic mailing lists, source code control
systems, and issue tracking systems that are managed by, or on behalf of, the Project for the purpose of
discussing and improving that Project, but excluding communication that is conspicuously marked or
otherwise designated in writing by You as “Not a Submission.”

“Submission” means the Code and any other copyrightable material Submitted by You, including any
associated comments and documentation.

2. Your Submission. You must agree to the terms of this Agreement before making a Submission to any
Project. This Agreement covers any and all Submissions that You, now or in the future (except as
described in Section 4 below), Submit to any Project.

3. Originality of Work. You represent that each of Your Submissions is entirely Your
original work. Should You wish to Submit materials that are not Your original work,
You may Submit them separately to the Project if You (a) retain all copyright and
license information that was in the materials as you received them, (b) in the
description accompanying your Submission, include the phrase "Submission
containing materials of a third party:" followed by the names of the third party and any
licenses or other restrictions of which You are aware, and (c) follow any other
instructions in the Project's written guidelines concerning Submissions.

4. Your Employer. References to “employer” in this Agreement include Your employer or anyone else
for whom You are acting in making Your Submission, e.g. as a contractor, vendor, or agent. If Your
Submission is made in the course of Your work for an employer or Your employer has intellectual
property rights in Your Submission by contract or applicable law, You must secure permission from Your
employer to make the Submission before signing this Agreement. In that case, the term “You” in this
Agreement will refer to You and the employer collectively. If You change employers in the future and
desire to Submit additional Submissions for the new employer, then You agree to sign a new Agreement
and secure permission from the new employer before Submitting those Submissions.

5. Licenses.

a. Copyright License. You grant AvaloniaUI OÜ, and those who receive the Submission directly
or indirectly from AvaloniaUI OÜ, a perpetual, worldwide, non-exclusive, royalty-free, irrevocable
license in the Submission to reproduce, prepare derivative works of, publicly display, publicly perform,
and distribute the Submission and such derivative works, and to sublicense any or all of the foregoing
rights to third parties.

b. Patent License. You grant AvaloniaUI OÜ, and those who receive the Submission directly or
indirectly from AvaloniaUI OÜ, a perpetual, worldwide, non-exclusive, royalty-free, irrevocable license
under Your patent claims that are necessarily infringed by the Submission or the combination of the
Submission with the Project to which it was Submitted to make, have made, use, offer to sell, sell and
import or otherwise dispose of the Submission alone or with the Project.

c. Other Rights Reserved. Each party reserves all rights not expressly granted in this Agreement.
No additional licenses or rights whatsoever (including, without limitation, any implied licenses) are
granted by implication, exhaustion, estoppel or otherwise.

6. Representations and Warranties. You represent that You are legally entitled to grant the above
licenses. You represent that each of Your Submissions is entirely Your original work (except as You may
have disclosed under Section 3 ). You represent that You have secured permission from Your employer to
make the Submission in cases where Your Submission is made in the course of Your work for Your
employer or Your employer has intellectual property rights in Your Submission by contract or applicable
law. If You are signing this Agreement on behalf of Your employer, You represent and warrant that You
have the necessary authority to bind the listed employer to the obligations contained in this Agreement.
You are not expected to provide support for Your Submission, unless You choose to do so. UNLESS
REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING, AND EXCEPT FOR THE WARRANTIES
EXPRESSLY STATED IN SECTIONS 3, 4, AND 6 , THE SUBMISSION PROVIDED UNDER THIS AGREEMENT IS
PROVIDED WITHOUT WARRANTY OF ANY KIND, INCLUDING, BUT NOT LIMITED TO, ANY WARRANTY OF
NONINFRINGEMENT, MERCHANTABILITY, OR FITNESS FOR A PARTICULAR PURPOSE.

7. Notice to AvaloniaUI OÜ. You agree to notify AvaloniaUI OÜ in writing of any facts or
circumstances of which You later become aware that would make Your representations in this
Agreement inaccurate in any respect.

8. Information about Submissions. You agree that contributions to Projects and information about
contributions may be maintained indefinitely and disclosed publicly, including Your name and other
information that You submit with Your Submission.

9. Governing Law/Jurisdiction. This Agreement is governed by the laws of the Republic of Estonia, and
the parties consent to exclusive jurisdiction and venue in the courts sitting in Talinn,
Estonia. The parties waive all defenses of lack of personal jurisdiction and forum non-conveniens.

10. Entire Agreement/Assignment. This Agreement is the entire agreement between the parties, and
supersedes any and all prior agreements, understandings or communications, written or oral, between
the parties relating to the subject matter hereof. This Agreement may be assigned by AvaloniaUI OÜ.

AvaloniaUI OÜ dedicates this Contribution License Agreement to the public domain according to the Creative Commons CC0 1.

@grokys

grokys commented Sep 6, 2026

Copy link
Copy Markdown
Member

I have not run the attached sample app, only the unit tests, so I have not confirmed the end-to-end fix in a real window

🤦‍♂️

return container;

// Using ActiveElement if set
var activeElement = GetActiveElement(container);

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No, it doesn't reproduce on WPF, and the reason is that WPF gates the write rather than the read.

KeyboardNavigation.UpdateActiveElement only records an active element for Once groups:

// Update ActiveElement only if container has TabNavigation = Once
if (GetKeyNavigationMode(container) == KeyboardNavigationMode.Once)
{
    SetActiveElement(container, activeElement);
}

https://github.com/dotnet/wpf/blob/360950b3ceb503d68bbb2fbc2ab9271e4cda90a5/src/Microsoft.DotNet.Wpf/src/PresentationFramework/System/Windows/Input/KeyboardNavigation.cs#L948-L960

That's the only write path: SetActiveElement is private with a single caller, and SetTabOnceActiveElement is only called from it. So in WPF a None container never has an active element, and the code you linked never gets the chance to follow one.

Avalonia records it unconditionally, in three places: ItemsControl.OnGotFocus (ItemsControl.cs:543), and the selection anchor in SelectingItemsControl.cs:539 and :971.

The selection path is the one in the report. The ListBox has an active element as soon as an item is selected, without ever being focused. That is also why the reporter's TreeView looked correct: it had no selected item, so nothing recorded one.

if (e == null)
{
// Using ActiveElement if set
var activeElement = GetActiveElement(container);

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Agreed that matching WPF should be the default, so I tried WPF's approach first: gate the write the way UpdateActiveElement does and leave both of these hunks untouched.

It doesn't survive here. Avalonia uses TabOnceActiveElement for a second job that WPF doesn't give it, as the VirtualizingStackPanel focus anchor (VirtualizingStackPanel.cs:1140 and :1386).

Gating the write on Once broke that. Avalonia.Controls.UnitTests went from 3915 passed / 0 failed to 11 failures, all VirtualizingStackPanel focus tests (Focusing_Another_Element_Recycles_Original_Focus_Element, Focused_Element_Outside_Realized_Range_Is_Not_Arranged_In_Viewport and similar).

So the divergence is forced by that property carrying two responsibilities in Avalonia. The read side was where I could fix it without disturbing virtualization.

The cleaner long term option is to split the two concerns, a navigation active element and a separate virtualization anchor. Then Avalonia could take WPF's write gate verbatim and both of these hunks would go back to matching WPF exactly. That's a bigger change and your call, and I'm happy to do it that way if you'd prefer.

The existing tests set the active element by hand. This one goes through
the path the report describes: a ListBox with TabNavigation="None" and a
selected item, which records the active element via selection rather than
focus. Fails without the navigation fix, passes with it.
@ethanstoner

Copy link
Copy Markdown
Author

Fair point on the sample app. I've added a ListBox level test that goes through the path in the report rather than setting the active element by hand: a ListBox with TabNavigation="None" and a selected item, where the active element is recorded by selection rather than by focus.

It fails on main with Assert.Same() Failure: Values are not the same instance and passes with the change. Avalonia.Controls.UnitTests is 3916 passed / 0 failed, Avalonia.Base.UnitTests 3440 passed / 0 failed.

@avaloniaui-bot

Copy link
Copy Markdown

You can test this PR using the following package version. 12.2.999-cibuild0069473-alpha. (feed url: https://nuget-feed-all.avaloniaui.net/v3/index.json) [PRBUILDID]

@grokys

grokys commented Sep 7, 2026

Copy link
Copy Markdown
Member

@ethanstoner is your human there?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

ListBox doesn't honour KeyboardNavigation.TabNavigation="None"

4 participants