Exemplo n.º 1
0
 /// <summary>TODO</summary>
 internal StaticItemVM(string ItemId, IControlStrings strings) : base(ItemId)
 {
     Label     = strings.Label;
     ScreenTip = strings.ScreenTip;
     SuperTip  = strings.SuperTip;
     KeyTip    = strings.KeyTip;
 }
Exemplo n.º 2
0
 internal StaticItemVM NewStaticItem(string controlId, IControlStrings strings)
 => new StaticItemVM(controlId, strings);
Exemplo n.º 3
0
 internal MenuSeparatorModel(Func <string, MenuSeparatorVM> funcViewModel,
                             IControlStrings strings)
     : base(funcViewModel, strings)
 {
 }
 internal ComboBoxModel(Func <string, ComboBoxVM> funcViewModel, IControlStrings strings)
     : base(funcViewModel, strings)
 {
 }
Exemplo n.º 5
0
 internal StaticDropDownModel(Func <string, StaticDropDownVM> funcViewModel, IControlStrings strings)
     : base(funcViewModel, strings)
 {
 }
 internal SelectableItemModel(IControlStrings strings)
     : base(null, strings)
 {
 }
Exemplo n.º 7
0
 internal EditBoxModel(Func <string, EditBoxVM> funcViewModel,
                       IControlStrings strings)
     : base(funcViewModel, strings)
 {
 }
Exemplo n.º 8
0
 internal LabelControlModel(Func <string, LabelControlVM> funcViewModel,
                            IControlStrings strings)
     : base(funcViewModel, strings)
 {
 }
Exemplo n.º 9
0
 public GroupModel(Func <string, GroupVM> funcViewModel, IControlStrings strings)
     : base(funcViewModel, strings)
 {
 }