Beispiel #1
0
 public ListAuto(string key = null, string onlyFor = null, string notFor = null,
                 Expression <Func <ICommand> > selectedCommand = null,
                 Expression <Func <IEnumerable> > itemsSource  = null, ListLayoutAuto defaultLayout = null)
     : base(key, onlyFor, notFor)
 {
     SelectedCommand = selectedCommand;
     ItemsSource     = itemsSource;
     DefaultLayout   = defaultLayout;
     ItemLayouts     = new Dictionary <string, ListLayoutAuto>();
 }
Beispiel #2
0
 public ListAuto(string key = null, string onlyFor = null, string notFor = null,
                 Expression<Func<ICommand>> selectedCommand = null,
                 Expression<Func<IEnumerable>> itemsSource = null, ListLayoutAuto defaultLayout = null)
     : base(key, onlyFor, notFor)
 {
     SelectedCommand = selectedCommand;
     ItemsSource = itemsSource;
     DefaultLayout = defaultLayout;
     ItemLayouts = new Dictionary<string, ListLayoutAuto>();
 }