I have a control which inherits from (you guessed it) Control.
I want to receive a notification whenever the FontSize or Style properties are changed. In WPF, I would do that by calling DependencyProperty.OverrideMetadata(). Of course, useful things like that have no place in Silverlight. So, how might one receive those kinds of notifications?
| |||
|
feedback
|
|
I think here is a better way. Still need to see the pros and Cons.
And now, you can call RegisterForNotification to register for a change notification of a property of an element, like .
See my post here on the same http://amazedsaint.blogspot.com/2009/12/silverlight-listening-to-dependency.html Using Silverlight 4.0 beta. | |||||||
feedback
|
|
It's a rather disgusting hack, but you could use a two-way binding to simulate this. i.e. have something like:
then create the binding like:
then hook up to the listener's event in your control subclass. | |||
feedback
|
|
This is what I always use (haven't tested it on SL though, just on WPF):
| |||||||||
feedback
|
|
You cannot externally listen to dependency property changed notifications. You can access the Dependency Property Metadata with the following line of code:
However, the only public member that is exposed is "DefaultValue". There are a multitude of ways to do this in WPF. But they are currently not supported by Silverlight 2 or 3. | |||
|
feedback
|
|
The only solution I see is to listen to the LayoutUpdated event - yes, I know it is called a lot. Note however that in some cases it won't be called even though FontSize or Style has changed. | |||
|
feedback
|