示例#1
0
 public static CurrencyLabel CurrencyLabel(this IContextBy contextBy)
 {
     return(new CurrencyLabel(contextBy.SearchContext, contextBy.By));
 }
示例#2
0
 public static T Control <T>(this IContextBy contextBy) where T : ControlBase
 {
     return((T)Activator.CreateInstance(typeof(T), contextBy.SearchContext, contextBy.By));
 }
示例#3
0
 public static Label Label(this IContextBy contextBy)
 {
     return(new Label(contextBy.SearchContext, contextBy.By));
 }
示例#4
0
 public static Checkbox Checkbox(this IContextBy contextBy)
 {
     return(new Checkbox(contextBy.SearchContext, contextBy.By));
 }
示例#5
0
 public static Input Input(this IContextBy contextBy)
 {
     return(new Input(contextBy.SearchContext, contextBy.By));
 }
示例#6
0
 public static Link Link(this IContextBy contextBy)
 {
     return(new Link(contextBy.SearchContext, contextBy.By));
 }
示例#7
0
 public static Button Button(this IContextBy contextBy)
 {
     return(new Button(contextBy.SearchContext, contextBy.By));
 }