In .NET, what is the difference between OnResize & OnSizeChanged?
"From a user’s point of view, they’re the same thing. OnResize will be called whenever OnSizeChanged is called. The reason we have both is that OnSizeChanged is used for databinding and we had OnResize first. The user can override either one and see the same behavior." [dotnet247]
One thought on “In .NET, what is the difference between OnResize & OnSizeChanged?”
Why this is not in MSDN help to these events? MSDN is very often uncomplete.