Alan2
Alan2

Reputation: 24562

How can I make a numeric entry in Xamarin be right justified?

I am using this:

 <Entry Keyboard="Numeric" VerticalOptions="Center" HorizontalOptions="End" WidthRequest="100"/>

However the numbers are all left justified. Is there a way I can change this so the numbers are right justified and can I also change the text colors of the numbers that appear to blue?

Upvotes: 2

Views: 775

Answers (2)

Brandon Minnick
Brandon Minnick

Reputation: 15340

Right-Justified Text

HorizontalTextAlignment="End"

Blue Text

TextColor="Blue"

Updated Code

<Entry Keyboard="Numeric" VerticalOptions="Center" HorizontalOptions="End" WidthRequest="100" HorizontalTextAlignment="End" TextColor="Blue" />

Upvotes: 1

Ivan Bukashkin
Ivan Bukashkin

Reputation: 694

My mistake. HorizontalTextAlignment="End" as described in this comment

Upvotes: 1

Related Questions