我已将所有BorderThickness
,Margin
和Padding
设置为0,0,0,0
。为什么还有内部填充?
顺便说一下,为什么24 {的TextBox
中的文字与32pt TextBlock
中文字的大小相同?
答案 0 :(得分:6)
此空格用于增加Button
的触摸区域。
要删除它,请在Expression Blend
点击Template - Create From Copy
。然后转到xaml并找到Padding="10,5,10,3"
(类似的东西)并删除它。
答案 1 :(得分:2)
您需要设置Margin =“ - 10,-10,-10,-10”以删除WP保留的额外空间
答案 2 :(得分:0)
您可以在上面的解决方案中使用Application.Current.Resources [“PhoneTouchTargetOverhang”]而不是10。