Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
Create event handler for OnScroll for web browser control

I would like to create an event handler for a web browser control scrolling.

webCompareSQL.Document.Window.Scroll

Can some one show me how to create an event handler?

share|improve this question

marked as duplicate by casperOne Jun 21 '12 at 14:00

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

up vote 5 down vote accepted

In the class you add a delegate and an event, and usually a simple internal method that checks for null and calls the event:

public delegate void ScrollHandler();
public event ScrollHandler Scrolled;
internal void OnScrolled()
{
    if (this.Scrolled != null)
        this.Scrolled();
}

Then in the actual code you would register a method for the event using:

MyClass.Scrolled += new ScrollHandler(MyMethod);

void MyMethod()
{
    Console.WriteLine("It was scrolled.");
}
share|improve this answer
Thanks i'm still figuring out how it works :) – Pomster Jun 20 '12 at 8:58
Thanks this looks good for creating an event handler. This webCompareSQL.Document.Window.Scroll this code is and even or i think it is because when i typed it in there was lightning next to the scroll, is there any way i can write an even handler for this? – Pomster Jun 20 '12 at 9:02

Not the answer you're looking for? Browse other questions tagged or ask your own question.