当鼠标悬停在日期选择器上并且滚动滚轮时,有没有办法阻止组件一日期选择器更改日期?
问问题
553 次
1 回答
1
对于当前发布的版本,我看到了从它继承的唯一方法:
public class MyDatePicker : C1DatePicker
{
protected override void OnMouseWheel(System.Windows.Input.MouseWheelEventArgs e)
{
e.Handled = true;
base.OnMouseWheel(e);
}
}
我们为此类问题提供完全免费的支持论坛:http: //our.componentone.com/groups/silverlight/studio-for-silverlight/forum/
于 2013-03-14T15:57:42.537 回答