
Use ”themes:WindowChrome.Chrome” to customize the Window non-client area. When the component is maximized, the size will exceed the screen boundary.
My code is roughly as follows:
<Window xmlns="heep://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="heep://schemas.microsoft.com/winfx/2006/xaml"
xmlns:themes="http://schemas.actiprosoftware.com/winfx/xaml/themes"
ResizeMode="CanResizeWithGrip"
WindowState="Maximizad">
<themes:WindowChrome.Chrome>
<themes:WindowChrome/>
</themes:WindowChrome.Chrome>
</Window>
When running in Window 10, the lower border of the window will exceed the screen range. There is about 11px pixel range covering the taskbar. How can I avoid this problem?
[Modified 9 months ago]