How can i do that? I want my user control to have a fixed size
havent touched C# in a while, cant remember what to override to disable user control resizing
Printable View
How can i do that? I want my user control to have a fixed size
havent touched C# in a while, cant remember what to override to disable user control resizing
Override the AllowResize property and have it always return false.
Apologies, I was still in ASP.NET mode. Override SetBoundsCore.
thanks mate! I shall give that a try . Sounds familiar :afrog: