加个属性: btn.SetValue(Stylus.IsPressAndHoldEnabledProperty,false);
或者在样式里设置:
<Style x:Key="MyButtonStyle" TargetType="{x:Type Button}"> <Setter Property="Stylus.IsPressAndHoldEnabled" Value="False"/> ... </Style>
参考:http://www.mobilemotion.eu/?p=1396