AvaloniaUI / Avalonia

Develop Desktop, Embedded, Mobile and WebAssembly apps with C# and XAML. The most popular .NET UI client technology
https://avaloniaui.net
MIT License
25.28k stars 2.19k forks source link

Tab order with containers #1903

Closed MihaMarkic closed 3 years ago

MihaMarkic commented 6 years ago

I found out that if I have something like

<TextBox>
  <Grid>
    <TextBox>
  </Grid>
<TextBox />

then nested TextBox will be skipped when tabbing through controls it helps if I set Grid.Focusable=true but then focus will go first to grid and only then to nested TextBox Focusable shouldn't affect nested controls I think.

grokys commented 3 years ago

I think this was fixed a while ago. Please re-open if that's not the case.