How do I hide the default window (form) border (I want to use mine), but still have the snapping and form shadow available?
Developing on (Desktop) Win 8, thought it's DWM API function or something like it.
PS: I'm new to DWM.
How do I hide the default window (form) border (I want to use mine), but still have the snapping and form shadow available?
Developing on (Desktop) Win 8, thought it's DWM API function or something like it.
PS: I'm new to DWM.
Copyright © 2021 Jogjafile Inc.
Ok, I finally found a solution for my problem.
Originally I was using WinForms, but over the years I changed over to WPF.
WPF got something called WindowChrome, which is the Window frame/holder that holds the Window contents & changes everytime there's a new Windows iteration.
I found out that there's a function that makes it possible to change the WindowChrome property of the Window really easily.
I made my own function, where I can pass the properties for a new chrome:
I hope I made the comment easy to understand if anyone wants to use the function. Also I found out that using Thickness(-1) on
glassThickness
makes the whole Window have the glass underneath it wihout giving any extra space/border outside of the Window itself, but still keeping the drop shadow effect.Another note is, that you have to change window's padding while maximizing, because Windows still want to cut off the border/glass that ain't there anymore.
PS: English isn't my native language, if there's any problem in the grammar, fix it please while editing. Thanks & yeah I'm answering my own question that is nearly 2 years old (my appologies).