Reputation: 206
how to make a window size fix in GTK#?? let w be a window class, i try to use Resizable bool variable,but it failed.
Window w = new Window("");
w.Resizable = false;
Anyone can help??
Upvotes: 0
Views: 841
Reputation: 3485
See if you can get this one to work instead.
Set FormBorderStyle to FixedDialog
Upvotes: 1