我正在尝试向椭圆按钮添加上下文,但我不知道如何实现它。 到目前为止,我所能做的就是
<Ellipse Fill="{TemplateBinding Background}"/>
但我不想要背景,我想要一个文字。如果有人可以在这里帮助我,那将会有很多帮助..
以下是代码:
<Button Grid.Column="0" Height="40" Width="40" Margin="-26,-10,26,10" FontWeight="Bold">
<Button.Template>
<ControlTemplate TargetType="{x:Type Button}">
<Ellipse/>
</ControlTemplate>
</Button.Template>
<Button.Content>
Meat
</Button.Content>
</Button>
如果您可以帮助我,请复制并通过代码并附上答案:
答案 0 :(得分:2)
<ControlTemplate TargetType="{x:Type Button}">
<Ellipse>
<ContentPresenter/>
</Ellipse>
</Grid>