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.