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