senzacionale
senzacionale

Reputation: 20916

BorderBrush in C# XAMARIN.FORMS

I want to use BorderBrush in Xamarin Forms like we can do with WIN Phone XAML

 <Button Content="myButton" Grid.Column="0" BorderBrush="#FFFFFF" Background="#000000"/>

Is there a possibility to do it in Xamarin.Forms?

Upvotes: 3

Views: 263

Answers (1)

JKennedy
JKennedy

Reputation: 18799

BorderBrush in Xamarin.Forms is achievable through the BorderColor property. Ref

So your button would be:

<Button Text="myButton" Grid.Column="0" BorderColor="#FFFFFF" BackgroundColor="#000000"/>

Upvotes: 4

Related Questions