Hi, in Flex you can set the width / height of a component to be 100%, e.g.
<TextBox width="100%" height="100%">
How can I do this in Silverlight?
Also, Flex has a spacer component that you can add into auto arranging components. E.g. I would like a stack panel like the following:
<StackPanel>
<Label width="Auto"/>
<Button width="73"/>
<Spacer width="100%"/>
<Button width="73"/>
</StackPanel>
The result of this is a label on the left, with a button next to it, and then the remaining button on the right hand side.
Any help appreciated,
Thanks