I do not understand why there is Control.padding.all which is int and according to hint there is set as well as get but I cannot set it (Control.Padding.All=5)? I would be grateful for explanation. Thanks!
|
feedback
|
|
Here is a simple Implementation of this
And if you use this you probably get this error
It hapens because structure is a value type. By setting this property you first call get Method. Property Get will return a copy of Padding so it is a value type and C# will detect out mistake and prevent compiling | ||||
feedback
|
|
Control.Margin = new Padding(5) | |||||
feedback
|