-
-
Notifications
You must be signed in to change notification settings - Fork 517
New issue
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
Enable change/hide of window title foreground #250
Comments
Using the windows api does not work because the titlebar is drawn by some piece of xaml. Will change the title of this issue and mark it as an enhancement. |
How is called the property to hide title? |
? |
How to hide window title foreground? |
It's currently not possible to do this in an easy way. |
This issue was closed with fix #249, so in wondered.. |
It was referenced by #249, not closed. ;-) |
Hi,
we are trying to give another font color to the title text of the RibbonWindow (Office2013)
Assuming the title is in the non-client area of the WPF window, its foreground cannot be altered in XAML.
Hence I have been trying to hide the window title, in favor of another added TextBlock with the right color.
Windows taskbar shows the original WPF window title, and this should remain.
Through the native Win32 API it should be possible to hide the title without removing it from the taskbar:
http://stackoverflow.com/questions/709391/remove-title-bar-text-of-a-window-but-keep-status-bar-text
http://blogs.msdn.com/b/wpfsdk/archive/2008/09/08/custom-window-chrome-in-wpf.aspx
Unfortunately the SetWindowThemeAttribute native function does not hide anything here in my Fluent solution.
Is there maybe a reason that I have overlooked, or does it ring a bell?
Thanks for your help.
The text was updated successfully, but these errors were encountered: