I am trying to implement custom panel in WPF and I don't understand what the real effect of return value from ArrangeOverride
method is. It seems that it is allways ok to return finalSize
(the argument of ArrangeOverride
) without changing it.
Is there a situation in which I should return something different than finalSize
?