I am trying to understand the Layouting system in Silverlight, but I don't really know how the process works. I know that Measure is always called before and then when all the measures have been done the Arrange starts. But when exactly does this process start, and are we able to control it? Please don't write de MSDN library link, I have already read it, and it's not clear at all..

My specific situation is that I have some nested LinearLayouts (inherit class from Panel and Arrangeoverride and MEasureoverride work) but I need the rootcontainer size(because they sizes are pertentages of the parent), and I can't get it until all the elements are loaded in the tree, so I call arrange() in LayoutRoot_Loaded. It works, yes, but It does the layouting process like 3 times and that is not efficient for the whole system... Can anybody help?? or at least explain how the Layouting system can be totally managed by the programmer :-)

Thank yyoouuuuuuuu!!!

link|improve this question

60% accept rate
feedback

1 Answer

can you try to put your code inside

    private void LayoutRoot_SizeChanged(object sender, System.Windows.SizeChangedEventArgs e)
    {
    }

rather than calling Arrange()?

link|improve this answer
I did it already, but then its called like 100 times... :-) – Adriana Apr 18 '11 at 12:25
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.