internal DynamicMenuModel(Func <string, DynamicMenuVM> funcViewModel, IStrings2 strings) : base(funcViewModel, strings) { }
internal SplitToggleButtonModel(Func <string, SplitToggleButtonVM> funcViewModel, IStrings2 strings, ToggleModel toggle, MenuModel menu) : base(funcViewModel, strings, menu) => _toggleModel = toggle;
internal SplitPressButtonModel(Func <string, SplitPressButtonVM> funcViewModel, IStrings2 strings, ButtonModel button, MenuModel menu) : base(funcViewModel, strings, menu) => _buttonModel = button;
protected AbstractSplitButtonModel(Func <string, IActivatable <TSource, TControl> > funcViewModel, IStrings2 strings, MenuModel menu) : base(funcViewModel, strings) => _menuModel = menu;
internal StaticGalleryModel(Func <string, StaticGalleryVM> funcViewModel, IStrings2 strings) : base(funcViewModel, strings) { }
internal ToggleModel(Func <string, CheckBoxVM> funcViewModel, IStrings2 strings) : base(funcViewModel, strings) { }
internal AbstractSelectableModel2(Func <string, IActivatable <TSource, TCtrl> > funcViewModel, IStrings2 strings) : base(funcViewModel, strings) => Description = strings?.Description;
protected ControlModel2(Func <string, IActivatable <TSource, TCtrl> > funcViewModel, IStrings2 strings) : base(funcViewModel, strings) => Description = strings?.Description;