如何调整Windows Phone 7按钮的转角半径?

时间:2013-09-19 06:01:19

标签: silverlight xaml windows-phone-7 windows-phone-8

我知道没有为Windows手机按钮设置转角半径的属性。但我的要求是创建一个带有曲线边缘的按钮。我们可以编写自定义样式来创建弯曲边缘按钮..?..如果是这样,请告诉我链接或任何好的教程..

2 个答案:

答案 0 :(得分:2)

这可能有助于你

<Button  HorizontalAlignment="Left" Margin="47,636,0,0" Name="SignUpButton" VerticalAlignment="Top"   FontSize="18" Background="#6BA92A"
             Click="SignUpButton_Click">
        <Button.Template>
            <ControlTemplate>
                <Border BorderBrush="#6BA92A" Background="#6BA92A" CornerRadius="20,20,20,20" BorderThickness="2">
                    <Button   Content="Sign up "
                              Background="{TemplateBinding Background}"
                              Height="65"
                              Width="348"
                              FontSize="{TemplateBinding FontSize}"
                              BorderBrush="#6BA92A">
                    </Button>
                </Border>
            </ControlTemplate>
        </Button.Template>
    </Button>

答案 1 :(得分:1)

如果你去混合和编辑按钮模板很简单。但是,进行更复杂的编辑可能需要您查看此link or tutorial。将按钮模板中的网格更改为边框,然后将角半径固定为某个值。这将使事情变得快速。