Author: xiard | Posted on: 6/10/2008 8:12:01 AM | Views : 860

Have you ever noticed how hard it is to search for information about "Type".  It's such a generic concept...

Anyway...does anyone know how to specify a DependencyProperty of type "Type", and then specify the value for that in Xaml in Silverlight?  For example, I have a dependency property that looks like this:

public Type EntityType {
    get { return (Type)GetValue(EntityTypeProperty); }
&nb ...

Go to the complete details ...