我一直在尝试和寻找这个已经退出很长时间了。
Windows 在按钮组件周围添加了黑色(或透明)边框。这样做的原因是按钮的触摸区域有点大,因此更容易点击按钮。
在我的应用程序中,我确实需要删除该区域。我尝试了很多,但似乎不可能。我也在 Expression Blend 中尝试过,但没有运气。
<Style x:Key="ButtonStyleCalendar" TargetType="Button">
<Setter Property="Background" Value="{StaticResource PhoneAccentBrush}"/>
<Setter Property="BorderBrush" Value="{StaticResource PhoneForegroundBrush}"/>
<Setter Property="Foreground" Value="{StaticResource PhoneForegroundBrush}"/>
<Setter Property="BorderThickness" Value="0"/>
<Setter Property="FontSize" Value="{StaticResource PhoneFontSizeSmall}"/>
<Setter Property="Padding" Value="0"/>
<Setter Property="Margin" Value="0" />
<Setter Property="VerticalContentAlignment" Value="Top" />
</Style>
这就是我应用于按钮的样式。我认为这将是边距或填充,但事实并非如此。
有人对此有答案吗?我搜索了stackoverflow,但没有人想出解决方案。
提前致谢!