Answers for "how to remove roundedness of button"

CSS
1

removing the unwanted border button css

button,
button:active,
button:focus {
  outline: none;
}
Posted by: Guest on November-19-2020
0

how to make a rounded button

<Style TargetType="Button" x:Key="RoundButton">
    <Style.Resources>
        <Style TargetType="Border">
            <Setter Property="CornerRadius" Value="5" />
        </Style>
    </Style.Resources>
</Style>
Posted by: Guest on May-03-2021

Code answers related to "how to remove roundedness of button"

Browse Popular Code Answers by Language