Esempio n. 1
0
 /// <summary>
 /// Add the binding to this set of bindings. If other bindings in this set
 /// are bound to the same key function, they will be resolved in the order they were added
 /// to this builder.
 /// </summary>
 public BindingsBuilder Bind(CommandBind commandBind)
 {
     _bindings.Add(commandBind);
     return(this);
 }
 public TypedCommandBind(Type forType, CommandBind commandBind)
 {
     ForType     = forType;
     CommandBind = commandBind;
 }