We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
If you open/use the StartScreen the title bar changes text-align and the Quick-Access-Icons are gone: Before StartScreen: After StartScreen:
Side-Note: To even use the start-screen in the showcase you need to delete Ln 158 in TestContent.xaml as the referenced image does not exist.
TestContent.xaml
The text was updated successfully, but these errors were encountered:
I found the reason for this:
parentRibbon.TitleBar.IsCollapsed is not set back to false after the StartScreen is hidden.
parentRibbon.TitleBar.IsCollapsed
false
I think this was introduced with the fix for #855 and the addition of var wasOpen = this.IsOpen; as IsOpen is already false there.
var wasOpen = this.IsOpen;
IsOpen
We use the following workaround for now:
StartScreen.IsOpenChanged += (s, e) => Ribbon.TitleBar.IsCollapsed = StartScreen.IsOpen;
Sorry, something went wrong.
Fixes #877
95788cd
batzen
No branches or pull requests
If you open/use the StartScreen the title bar changes text-align and the Quick-Access-Icons are gone:
Before StartScreen:
After StartScreen:
Side-Note: To even use the start-screen in the showcase you need to delete Ln 158 in
TestContent.xaml
as the referenced image does not exist.Environment
The text was updated successfully, but these errors were encountered: