i am kind of new to developing, so sorry for my (k)no(w)legde.
i want to save all instances of notepad in an Process[]
public Process[] processes = Process.GetProcessesByName("notepad");
and then iterate the array by using my mousewheel.
I've tried to use the MouseWheelEventHandler
, but all examples i found were WindowsForms examples.
How do i solve this?