Guest User

Untitled

a guest
May 22nd, 2018
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. private void Form1_MouseWheel(object sender, MouseEventArgs e)
  2. {
  3. Debug.WriteLine("Foo");
  4. }
  5.  
  6. namespace BlahBlah
  7. {
  8. public partial class Form1 : Form
  9. {
  10.  
  11. private void Form1_MouseClick(object sender, MouseEventArgs e)
  12. {
  13. Debug.WriteLine("Foo");
  14. }
  15.  
  16. this.MouseWheel+= new MouseEventHandler(Form1_MouseWheel);
Add Comment
Please, Sign In to add comment