Вопрос

is there a way to stop a Component One datepicker from changing dates when the mouse is over the datepicker and the scroll wheel is scrolled?

Это было полезно?

Решение

with currently released version I see the only way to inherit from it:

public class MyDatePicker : C1DatePicker
{
    protected override void OnMouseWheel(System.Windows.Input.MouseWheelEventArgs e)
    {
        e.Handled = true;
        base.OnMouseWheel(e);
    }
}

We have absolutely free support forums for such questions: http://our.componentone.com/groups/silverlight/studio-for-silverlight/forum/

Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top