You need to set the WindowStyle property to None, like I outlined in this answer
<Window ...
WindowStyle="None"
WindowState="Maximized"
WindowStartupLocation="CenterScreen">
You can also set AllowsTransparency="True" and Background="Transparent" if you wish to hide the entire window frame and build your own.
Update based on code added to question
The code you just posted works fine for me. There is no title bar, although there is a Resize border because you specified ResizeMode="CanResize"
You do have some whitespace at the top of your window, but that is because you specified a top Margin for your Slider and TextBox (When you specify a Margin with 4 numbers, it goes Left, Top, Right, Bottom so the 2nd number is your Top Margin)