Exemplo 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)));
 }
Exemplo n.º 2
0
 public XamlProperty(XamlType type, string name)
 {
     DeclaringType = type;
     PropertyName  = name;
 }
Exemplo n.º 3
0
 public XamlExtension(XamlType type)
 {
     ExtensionType  = type;
     NamedArguments = new Dictionary <string, object>();
 }