Im having a custom panel with overriding Measure and Arrange. In my view put a TextBox like this:

<l:CustomPanel>
  <TextBox />
</l:CustomPanel>

My custom panel is giving the textbox the entire available space in Measure but then in Arrange its only giving it a fraction of this space. The problem is that the textbox is then expanding outside its rendered space if having a long text. I would like it to only fill the available space given in arrange. The problem is that I dont have this actual space in Measure, which would otherwise be the obvious place to set it. Its only after the Measure-pass that I know the resulting space. But at that time the textbox has already been measured with a larger space and it expands into this and is being clipped by arrange.

link|improve this question

54% accept rate
1  
Can you post your CustomPanel.MeasureOverride code? – Kai Wang Apr 21 '11 at 13:28
Friendly suggestion: close out your previous question on the same topic before asking new questions. – Rick Sladkey Apr 21 '11 at 21:03
possible duplicate of WPF: Shared Size in Custom Panel? – Andreas Zita Apr 22 '11 at 12:38
I was trying to reformulate my question. I have updated my first post on this subject with a code example: stackoverflow.com/questions/5734184/… – Andreas Zita Apr 22 '11 at 12:40
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.