Answers for "wpf round button"

C#
2

wpf round button

<Button>
    <Button.Resources>
        <Style TargetType="Border">
            <Setter Property="CornerRadius" Value="5"/>
        </Style>
    </Button.Resources>
</Button>
Posted by: Guest on July-08-2020

C# Answers by Framework

Browse Popular Code Answers by Language