pb2.MouseWheel += new MouseWheelEventHandler(pb2_MouseWheel);
void pb2_MouseWheel(object sender, MouseWheelEventArgs e)
{
pb2.Value = pb2.Value + 1;
}
The result for all the three examples is as follows: