Reputation: 7128
When using TouchDevelop for Windows Phone 7, is there a way to center text in a text box? Or, can a text box be centered on the Wall?
Upvotes: 0
Views: 1043
Reputation: 305
You can set the alignment of the content in your TextBox using the TextAlignment property.
<TextBox TextAlignment="Center"/>
MSDN Reference: http://msdn.microsoft.com/en-us/library/system.windows.controls.textbox.textalignment(v=vs.95).aspx
Upvotes: 6