wpf - Grid column autocollapse -


is possible grid column collapse according child width? , column next him expend , take space got ?

if not, whats best way achieve ability?

set widht of first gridcolumndefinition auto , second 1 *

<grid>     <grid.columndefinitions>         <columndefinition width="auto"/>         <columndefinition width="*"/>     </grid.columndefinitions>          </grid> 

Comments

Popular posts from this blog

haskell - Using filter on an item in a list? -

c# - When does PreApplicationStartMethod actually get triggered to run? -

c# - Binding attached property to IEnumerable -