-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ScrollIntoView has one row offset, if scroll backwards #58
Comments
this is because of the header row, the please let me know if there are any other possibilities to do that. |
Yes, please. I do need that. How'd you like something like
So the signature would be the same as for the original |
If the intention is to align the method signature with the base class, it should be |
OK with me. |
Assume we have a collection with 50 items numbered 1..50. The Table can show 10 items at a time.
Now when we
table.ScrollIntoView(<item19>)
, the item19 shows as the last row in the table.OK.
But when we have the view start with item35 in the first row and then
table.ScrollIntoView(<item19>)
, the first row shows item20, not item19. That is, scrolling backwards is always one row off.I checked with the plain ListView so to exclude a (flaw) Winui 3 behavior. Works fine.
The text was updated successfully, but these errors were encountered: