Esempio n. 1
0
 public static string ToString(this XamlContext ctx, XElement elem, XamlType type)
 {
     type.ResolveNamespace(elem, ctx);
     return(ctx.ToString(elem, type.ToXName(ctx)));
 }
Esempio n. 2
0
 public XamlProperty(XamlType type, string name)
 {
     DeclaringType = type;
     PropertyName  = name;
 }
Esempio n. 3
0
 public XamlExtension(XamlType type)
 {
     ExtensionType  = type;
     NamedArguments = new Dictionary <string, object>();
 }