简体   繁体   中英

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 ?

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"/>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM