If I have a winform, may I know how can I control the zoom level of the font in the application (as well as the application window itself obviously) by using Ctrl + Mouse Scroll Wheel? I see there is a Delta in the Scroll Wheel event, but not sure how that works. Is there any code sample that I can look into?
Control zoom level of WinForms using mouse scroll wheel and Ctrl in VB.NET
10.7k Views Asked by AZhu At
3
You'll have to handle the
KeyDown
andKeyUp
event in order to determine whether or not Ctrl key is being held down. This value should be stored at class-level because it will be used by other subroutines besides theKeyDown
andKeyUp
events.You then write code to handle the form's
MouseWheel
event. Scrolling downwards (towards you) causes a negative value for theDelta
property of theMouseEventArgs
. Scrolling upwards is obviously the reverse. The value of the Delta property is always currently 120.Microsoft's reason for this value is as follows:
In your context you'll just check for the sign of the Delta and perform an action.
Here is a sample code implementing basic 'zoom' functionality:
Read on the following for more information about your question: