tags:

views:

40

answers:

1

I am learning WPF, and I've run into a term called "Attached Event". I have not been able to find a good resource that isn't confusing.

Can anyone tell me what an attached event is and what it does?

+3  A: 

Have a look at this MSDN article. Make sure you read the prerequisite articles (routed events and XAML). You may also want to look at the whole WPF events series in MSDN.

I suspect you'll find that if you start from the basics, you'll be able to work up to attached events without too much hassle.

You may also want to read up on attached properties if you're unfamiliar with them.

If you don't find these helpful, it would be useful if you could give details about which bit you find confusing.

Jon Skeet