You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jun 2, 2023. It is now read-only.
with <StatusBarItem><Label Content="Ready"></Label></StatusBarItem>.
You could either remove the setter line or replace Height with MinHeight.
Another issue is that the FontSize of a StatusBarItem does not scale with the windows FontSize if you append to <Window ... FontSize="16". Any idea why? (Edit: Seems like this kicks in...)
The text was updated successfully, but these errors were encountered:
WpfExpressionBlendTheme/DarkBlendTheme/Themes/Styles.xaml
Line 2456 in 5d1d00f
This setter leads to a fixed height of the status bar, which means if the inner element is larger, the item is cut off. To test this replace:
WpfExpressionBlendTheme/DarkBlendTheme/MainWindow.xaml
Line 742 in 5d1d00f
with
<StatusBarItem><Label Content="Ready"></Label></StatusBarItem>
.You could either remove the setter line or replace
Height
withMinHeight
.Another issue is that the
FontSize
of aStatusBarItem
does not scale with the windowsFontSize
if you append to<Window ... FontSize="16"
. Any idea why? (Edit: Seems like this kicks in...)The text was updated successfully, but these errors were encountered: