I am writing an application in VisualStudio Express 2010 (C #). There is a Panel in which the PictureBox is located. The MouseWheel event is hung on the panel, when triggered, the PictureBox image is scaled. Looks like that:
//Объявление события this.Panel.MouseWheel += new MouseEventHandler(this.Panel_MouseWheel); //Обработчик private void Panel_MouseWheel(object sender, MouseEventArgs e) { //масштабирование }
So, everything works fine on my laptop. I tried on a friend's laptop - the mouse does not intercept the scroll, the scroll with the dotpad intercepts. Scroll on the mouse from a friend's worker. Tell me what could be the problem.