How to add a separator to a PopupBox? #3775
Unanswered
andrewducker
asked this question in
Q&A
Replies: 1 comment
-
@andrewducker adding a separator between the <materialDesign:PopupBox Style="{StaticResource MaterialDesignPopupBox}">
<StackPanel>
<Button Content="Button 1" />
<Separator/>
<Button Content="Button 2" />
<Separator/>
<Button Content="Button 3" />
</StackPanel>
</materialDesign:PopupBox> gets you the following result: Does this answer your question? |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
When adding multiple items to a PopupBox, how do I add a separator between groups of them?
Beta Was this translation helpful? Give feedback.
All reactions