Glen Little
Glen Little

Reputation: 7128

How to center text?

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

Answers (1)

Jason H
Jason H

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

Related Questions