-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
Advanced PaneGrid usage #525
Comments
The I am not sure I understand the issue you are having. What are you trying to do exactly? Could you share an SSCCE?
|
So the idea is to have a GUI with 2 parts, one to display an image, and the other with controls to pixelize the image. You can actually check the current code here. On
So I made this SSCCE. It displays the Rust logo when you choose its resolution through a radio control. When using 144px, the whole pane space won't be completely filled (as it would happen if I hadn't use panes but simply columns, because Finally, the pane with the |
Ok I realized that at least for the |
I am trying to put
Image
andScrollable
content (basically controls to modify the image) in different panes of aPaneGrid
.It looks like scrollable have infinite length when put in panes. And it also looks like images are not scaled automatically to use maximum available space (which is the case if they are not in a
Pane
). Besides, it feels like rendering an image in aPane
is more expensive (higher CPU usage and longer rendering time).Is it a bad idea to put
Image
andScrollable
content inPaneGrid
? Or are there some parameters to tune for things to go smoothly ?The text was updated successfully, but these errors were encountered: