Reputation: 345
With a library .NET it works, but not with Mono.
Problem: Need to make the form borderless (FormBorderStyle = none) and the 50 to 50. install MaximumSize 50, 50, but the width of the reason is all the same 100. less is being done. Then install MinimumSize 50, 50, and then I get the desired result in .NET, but when I run under Linux, then all the same width greater than 100 and does not want to diminish.
How to solve this problem?
Upvotes: 0
Views: 447
Reputation: 4159
You should just set the Size
of the form, not Minimal or MaximalSize
Upvotes: 1