WPF. TextBlock and TextBox aligned properly -


what have when size of border container wide enough:

name value namelonger value

then size of border gets smaller , have this:

name value namelonger v

i used wrappanel , achieved this:

name value   namelonger value 

it better achieve this:

name       value   namelonger value   

is possible achieve such thing?

not sure if totally understand explaining based on think yiou describing, looking for?

<border> <grid>         <grid.columndefinitions>             <columndefinition width="auto"></columndefinition>             <columndefinition width="auto"></columndefinition>         </grid.columndefinitions>         <grid.rowdefinitions>             <rowdefinition height="auto"></rowdefinition>             <rowdefinition height="auto"></rowdefinition>         </grid.rowdefinitions> <!--put textblocks in here--> </grid> </border> 

Comments

Popular posts from this blog

image - ClassNotFoundException when add a prebuilt apk into system.img in android -

I need to import mysql 5.1 to 5.5? -

Java, Hibernate, MySQL - store UTC date-time -