Is there a way to add a control to the center of the title bar using WindowCommands? #4125
Unanswered
TheGameVlog
asked this question in
Q&A
Replies: 1 comment
-
Hi @TheGameVlog I would consider using the <mah:MetroWindow.TitleTemplate>
<DataTemplate>
<mah:WindowCommands HorizontalAlignment="Center" ShowLastSeparator="False">
<Button>😎</Button>
<Button>💹</Button>
<Button>🎉</Button>
</mah:WindowCommands>
</DataTemplate>
</mah:MetroWindow.TitleTemplate> Happy coding |
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
-
Workaround is using RightWindowCommands and then giving it some margins, but then it's not a perfect solution so was wondering if someone else has done it before or has an easier way to do it.
Thank you.
Beta Was this translation helpful? Give feedback.
All reactions