コード例 #1
0
 public static TModelNode AddComposedLookItem <TModelNode>(this TModelNode model, ComposedLookItemDefinition definition,
                                                           Action <ComposedLookItemModelNode> action)
     where TModelNode : ModelNode, IListItemHostModelNode, new()
 {
     return(model.AddTypedDefinitionNode(definition, action));
 }
コード例 #2
0
 public static ModelNode AddComposedLookItem(this ModelNode model, ComposedLookItemDefinition definition, Action <ModelNode> action)
 {
     return(model.AddDefinitionNode(definition, action));
 }
コード例 #3
0
 public static TModelNode AddComposedLookItem <TModelNode>(this TModelNode model, ComposedLookItemDefinition definition)
     where TModelNode : ModelNode, IListItemHostModelNode, new()
 {
     return(AddComposedLookItem(model, definition, null));
 }
コード例 #4
0
 public static ModelNode AddComposedLookItem(this ModelNode model, ComposedLookItemDefinition definition)
 {
     return(AddComposedLookItem(model, definition, null));
 }