Answers for "round corour of button xaml"

0

xcode 12 make a round button

button.layer.cornerRadius = 10.0

or 

button.layer.cornerRadius = button.frame.height / 2
Posted by: Guest on April-24-2021
0

xaml button corner radius

<Button>
    <Button.Resources>
        <Style TargetType="Border">
            <Setter Property="CornerRadius" Value="5"/>
        </Style>
    </Button.Resources>
</Button>
Posted by: Guest on September-22-2021

Code answers related to "Swift"

Browse Popular Code Answers by Language