c# - Alligning Text Boxes in Silverlight -


can 1 tell me how allign text boxes in silverlight using c# .in application 2 textboxes getting overlapped . using grid

place them in stackpanel.

<stackpanel>     <textbox width="120">     <textbox width="120"> </stackpanel> 

produces 2 text boxes 1 above other.

another option use second grid 2 rows or 2 columns , place text box in each, allows share out available space of cell in provided outer grid.


Comments

Popular posts from this blog

ruby - When to use an ORM (Sequel, Datamapper, AR, etc.) vs. pure SQL for querying -

php - PHPDoc: @return void necessary? -

c++ - Convert big endian to little endian when reading from a binary file -