Adding badge to window title bar #1137
Closed
ahmedtalaat327
started this conversation in
Ideas
Replies: 2 comments
-
Yes, You can use header when adding additional controls like this Just add header element inside the titlebar <ui:TitleBar
x:Name="TitleBar"
Title="{Binding ViewModel.ApplicationTitle}"
Grid.Row="0"
CloseWindowByDoubleClickOnIcon="True">
<ui:TitleBar.Icon>
<ui:ImageIcon Source="pack://application:,,,/Assets/wpfui-icon-256.png" />
</ui:TitleBar.Icon>
<ui:TitleBar.Header>
<ui:Button Appearance="Caution">Beta</ui:Button>
</ui:TitleBar.Header>
</ui:TitleBar> |
Beta Was this translation helpful? Give feedback.
0 replies
-
perhaps you can mark it as answered @ahmedtalaat327 |
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
-
I was wondering if it's possible to add a badge like this..?
Beta Was this translation helpful? Give feedback.
All reactions