UWP-Circle-Button-Style-
UWP-Circle-Button-Style- copied to clipboard
A perfect circlular button which has a round highlight while hovering over it too. Posted here because there was no help for this on the internet.
UWP-Circle-Button-Style-
A perfect circlular button which has a round highlight while hovering over it too. Posted here because there was no help for this on the internet.

Go ahead and fork it. Make it your own ;)
How to use this style
You can either add the style in between resources tags like this:
<Grid.Resources> <!-- Put Style Here --> </Grid.Resources>
Or you can add it directly into the Style tags of a button (In order for this to work, you need to remove the x:Key attribute) :
<Button>
<Button.Style>
<!-- Put Style Here -->
</Button.Style>
</Button>
Note: Whenever you see <!-- Put Style Here -->, literally copy and paste the style from the xaml file in that position.