I built a small c# application, that have FormBorderStyle
set to None
, but when execute it, I can't move the Form. But if I set the FormBorderStyle
to FixedSingle
or other value, I can move the form with mouse.
Asked
Active
Viewed 102 times
0

Priyank Sheth
- 2,352
- 19
- 32

Yacino
- 645
- 2
- 10
- 32
-
2Its not fixed, there just isn't any handle left to move it, you need to either override the mouse handler or have the border there. Edit: I haven't tried this but you can probably confirm this by pressing Windows Key and Right which should resize/move it to the side of your screen – Sayse May 29 '15 at 10:04
-
http://stackoverflow.com/questions/2575216/resize-winform-with-no-border/2575452#2575452 – Hans Passant May 29 '15 at 10:15