public WidgetController(IWidgetBuilder widgetbuilder, IWidgetRepository widgetrepository, SecurityResolver sr, SessionData sd) { _widgetbuilder = widgetbuilder; _widgetrepository = widgetrepository; _sr = sr; _sd = sd; }
public ScrolledExpression(string Name, EvaluatedAttributeList Params, IWidgetBuilder Child) : base(Name, Params, Child) { }
public SingleWidgetContainerBase(string Name, EvaluatedAttributeList Params, IWidgetBuilder Child) : base(Name, Params) { this.Child = Child; }
public ToolButtonExpression(string Name, EvaluatedAttributeList Params, IWidgetBuilder Child) : base(Name, Params, Child) { }
public GenericBinExpression(string Name, EvaluatedAttributeList Params, IWidgetBuilder Child, Type BinType) : base(Name, Params, Child) { this.BinType = BinType; }