I tried setting WindowStyle="None" in XAML but that makes the Window completely borderless. I need a Window that does not have a title bar, which prevent user from moving it. But still has border so it still looks like a Window 🙂
I tried setting WindowStyle=None in XAML but that makes the Window completely borderless. I
Share
WindowStyle="None"does not remove the border by default, you must allow resizing (ResizeMode=CanResize/CanResizeWithGrip) and forbid transparency (AllowsTransparency="False") though as far as i know.