We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
GetChildElementById is not able to find element for pane children within the SplitGrid.
GetChildElementById
SplitGrid
It works for any other child.
public UIToolView View { get { return new UIToolView( SplitGrid() .WithLeftPaneChild(Button("custom-id-1")) .WithRightPaneChild(DataGrid("custom-id-2")) ); } }
var element1 = Gui.View.GetChildElementById("custom-id-1"); // null var element2 = Gui.View.GetChildElementById("custom-id-2"); // null
Expect element with id to be found within SplitGrid.
DevToys (app with GUI)
Version 2.0-preview.5
The text was updated successfully, but these errors were encountered:
After some more investigation, it's actually not SplitGrid that doesn't work, but Card that is not able to iterate through UIElement property.
Card
UIElement
I'm working on a fix.
Sorry, something went wrong.
Fix no access to elements inside Card. Fixes DevToys-app#1406
e9f755a
Great catch! Thank you for this!
003e38b
Successfully merging a pull request may close this issue.
Current behavior
GetChildElementById
is not able to find element for pane children within theSplitGrid
.It works for any other child.
How to reproduce it
Expected behavior
Expect element with id to be found within
SplitGrid
.Affected DevToys kind
DevToys (app with GUI)
DevToys Version
Version 2.0-preview.5
The text was updated successfully, but these errors were encountered: