Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

If you put this into Kaxaml:

  <WrapPanel Width="500" ScrollViewer.VerticalScrollBarVisibility="Visible">
    <Button Width="110" Height="100"></Button>
    <Button Width="130" Height="100"></Button>
    <Button Width="70" Height="100"></Button>
    <Button Width="50" Height="100"></Button>
    <Button Width="329" Height="100"></Button>
    <Button Width="126" Height="100"></Button>
    <Button Width="86" Height="100"></Button>
    <Button Width="48" Height="100"></Button>
    <Button Width="200" Height="100"></Button>
    <Button Width="190" Height="100"></Button>   
  </WrapPanel>

You see a bunch of buttons aligned with a ragged right side (but a justified left side).

Is there a way to get the contents of each "row" to proportionally expand to fill that row? (So it will have straight lines on both right and left?)

share|improve this question

1 Answer

Not with the WrapPanel itself as what you're seeing it do is exactly what it is designed for. You could certainly write your own Panel to do just that but I think TabPanel (the default used for laying out TabControl tabs) does what you're trying to get.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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