How can I constrain a vertical WPF StackPanel's width to the most narrow item it contains. The StackPanel's width must not be greater than the width of any other child element.
| ||||
|
feedback
|
|
Unfortunately the IValueConverter approach will not always work; if the children are added to StackPanel statically, for example, the child collection will be empty at the time of binding (so I discovered). The simplest solution is to create a custom panel:
You can use the panel as illustrated by the following XAML:
Which will render something like the following: |
|
i have tried binding to the ActualWidth property, even creating a converter to offset the value, and this works great with one exception: as you expand the size of the container, the width is updated properly, but when to make the container smaller, the width of the actual content gets smaller, but the "page width" of any scrollviewers will not. i'm sure there's a way to work around this, but i haven't found it. | |||
|
feedback
|
|
You can't. A vertically oriented You'd be best off writing a custom panel to achieve your desired behavior. | ||||
|
feedback
|
