Add support for various properties to PopupBox#4011
Add support for various properties to PopupBox#4011corvinsz wants to merge 2 commits intoMaterialDesignInXAML:masterfrom
Conversation
…ss and ButtonAssist.CornerRadius and hover-effect to PopupBox
@corvinsz I doubt that it fails on the main branch, because that would fail the pipeline. However, note that the Try to set a break point on the |
|
@corvinsz Looking at your changes, I believe the issue is that the test simply looks up a border inside the var border = await popupBox.GetElement<Border>();And since you have introduced a |
because the PopupBox now contains a nested border in it's template, the test was broken because it was getting the border in the template instead of the call-site defined content, which is wrong. getting the border by x:Name disambiguates them
|
@nicolaihenriksen I see, thank you for the detailed explanation. I was not aware of the fact that you can't easily debug the |

fixes #4010
fixes everything mentioned in the linked issue.
The changes are largely based on how it's done in the other button styles.
popupBoxPost.mp4