How to redraw Button as a circle in XAML

How to redraw Button as a circle in XAML
When using XAML layout, sometimes in order to make the interface Metro-like, some buttons need to use circles instead of the default rectangles. The following Button style can solve this problem and can be modified according to your needs. Of course, if you are familiar with Bland, you can use it directly to draw the style you need, but is it faster to paste the code?

Copy code
The code is as follows:

<Style x:Key="btnNext" TargetType="Button">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="Button">
<Grid>
<VisualStateManager.VisualStateGroups>
<VisualStateGroup x:Name="CommonStates">
<VisualState x:Name="Pressed">
<Storyboard>
<ObjectAnimationUsingKeyFrames Storyboard.TargetProperty="(FrameworkElement.Margin)" Storyboard.TargetName="rectangle">
<DiscreteObjectKeyFrame KeyTime="0">
<DiscreteObjectKeyFrame.Value>
<Thickness>-3</Thickness>
</DiscreteObjectKeyFrame.Value>
</DiscreteObjectKeyFrame>
</ObjectAnimationUsingKeyFrames>
</Storyboard>
</VisualState>
<VisualState x:Name="Normal"/>
<VisualState x:Name="Disabled"/>
<VisualState x:Name="MouseOver"/>
</VisualStateGroup>
<VisualStateGroup x:Name="FocusStates">
<VisualState x:Name="Focused"/>
</VisualStateGroup>
</VisualStateManager.VisualStateGroups>
<Rectangle x:Name="rectangle" RadiusY="25" RadiusX="25" Stroke="Blue" StrokeThickness="4">
</Rectangle>
<ContentPresenter HorizontalAlignment="{TemplateBinding HorizontalContentAlignment}" VerticalAlignment="{TemplateBinding VerticalContentAlignment}"/>
</Grid>
</ControlTemplate>
</Setter.Value>
</Setter>
<Setter Property="Margin" Value="5"/>
<Setter Property="Width" Value="50"/>
<Setter Property="Height" Value="50"/>
<Setter Property="FontSize" Value="120"/>
<Setter Property="Foreground" Value="White"/>
</Style>

<<:  Detailed explanation of VUE's data proxy and events

>>:  Two ways to understand CSS priority

Recommend

Implementation of Docker deployment of web projects

The previous article has installed the docker ser...

Summary of the use of CSS scope (style splitting)

1. Use of CSS scope (style division) In Vue, make...

Vue implements mobile phone verification code login

This article shares the specific code of Vue to i...

Steps to build a Docker image using Dockerfile

Dockerfile is a text file that contains instructi...

Solve the problem of ugly blue border after adding hyperlink to html image img

HTML img produces an ugly blue border after addin...

Detailed explanation of MySQL syntax, special symbols and regular expressions

Mysql commonly used display commands 1. Display t...

Example of how to modify styles via CSS variables

question How to modify CSS pseudo-class style wit...

Use Grafana+Prometheus to monitor MySQL service performance

Prometheus (also called Prometheus) official webs...

Detailed tutorial on installing nacos in docker and configuring the database

Environment Preparation Docker environment MySQL ...

The concrete implementation of JavaScript exclusive thinking

In the previous blog, Xiao Xiong updated the meth...

Html/Css (the first must-read guide for beginners)

1. Understanding the meaning of web standards-Why...

Detailed explanation of 6 ways of js inheritance

Prototype chain inheritance Prototype inheritance...

Vue echarts realizes horizontal bar chart

This article shares the specific code of vue echa...