Interactivity.Behavior<T> vs attached properties
Asked Answered
P

4

29

I'm trying to find some differences between these approaches. Is there any situation where behaviors are used and the same functionality could not be done with attached properties?

Pencil answered 24/2, 2010 at 16:18 Comment(0)
S
44

No. Behaviors are basically just a much nicer abstraction on top of attached properties.

By using Behavior<T>, you gain access to the AssociatedObject directly, as well as the ability to attach and detach the behavior, easily, at runtime.

You could do this with attached properties, but it would require adding a lot of extra plumbing.

Ss answered 24/2, 2010 at 16:23 Comment(3)
However, it becomes difficult to add them with a style.Serrate
Actually there are a few things you can't do with attached properties... For example, it would be possible to add several instances of the same behavior, but you can only set an attached property once. OTOH, attached properties have a shorter syntax, and can be used in styles, which is difficult with behaviors.Allard
@ThomasLevesque you can also define an Attached Property that adds Behaviors to a given UI element, and set that property in a Style.. haha =)Carillo
P
8

I tend to use Behaviors to add functionality which makes visible changes. Whereas I use attached properties to add additional information to an object which is subsequently used by other objects.

E.g. Grid.Row makes a good attached property, as it's used by the Grid and not the target. On the other hand, AutoCorrect would make a good behaviour, as this will make visible changes on the object.

Pentylenetetrazol answered 16/4, 2012 at 14:37 Comment(0)
M
4

Behaviors are based on attached properties. That means if you can't find specific behavior - you write your own, either based on behaviors framework provided by Blend or by creating your own AP...

I always thought that behaviors are great evidence of attached properties power. Just incredible what you can get with them.

Magnuson answered 24/2, 2010 at 16:25 Comment(0)
B
1

This is not the answer. But the best explanation I can find on this topic https://web.archive.org/web/20180208143035/http://briannoyesblog.azurewebsites.net/2012/12/20/attached-behaviors-vs-attached-properties-vs-blend-behaviors/

Brian Noyes in his articles clearly describes the differences between each of the concepts.

Bugbane answered 18/12, 2013 at 10:55 Comment(3)
The provided link is broken.Fawn
Here's the working link briannoyesblog.azurewebsites.net/2012/12/20/…Tattletale
I wonder why he deleted it. web.archive.org/web/20180208143035/http://…Valenba

© 2022 - 2024 — McMap. All rights reserved.