-
Notifications
You must be signed in to change notification settings - Fork 668
DYN-9855 Graph Properties Scrollbar #16758
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
DYN-9855 Graph Properties Scrollbar #16758
Conversation
Adding scrollbar in the GraphProperties (this change will make to disappear the scrollbar in the CustomProperties section).
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
See the ticket for this pull request: https://jira.autodesk.com/browse/DYN-9855
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull request overview
This PR adds a scrollbar to the GraphProperties view by wrapping the main Grid in a ScrollViewer. This change shifts scroll functionality from the CustomProperties section to the entire GraphProperties panel, improving navigation when content exceeds the visible area.
| </UserControl.Resources> | ||
|
|
||
| <Grid Margin="10px, 10px"> | ||
| <ScrollViewer VerticalScrollBarVisibility="Auto"> |
Copilot
AI
Nov 27, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The ScrollViewer should specify HorizontalScrollBarVisibility to prevent unexpected horizontal scrolling behavior. Consider adding HorizontalScrollBarVisibility=\"Disabled\" to ensure content doesn't scroll horizontally, which could impact keyboard navigation and screen reader behavior.
| <ScrollViewer VerticalScrollBarVisibility="Auto"> | |
| <ScrollViewer VerticalScrollBarVisibility="Auto" HorizontalScrollBarVisibility="Disabled"> |
|
Hi team, do you have any comment about this changes? |
|
/cherrypick |
1 similar comment
|
/cherrypick |
(cherry picked from commit 327f560)
|
Successfully created backport PR for |

Purpose
Adding scrollbar in the GraphProperties (this change will make to disappear the scrollbar in the CustomProperties section).
Declarations
Check these if you believe they are true
Release Notes
Adding scrollbar in the GraphProperties (this change will make to disappear the scrollbar in the CustomProperties section).
Reviewers
@reddyashish @zeusongit @johnpierson
FYIs