Collections.Core.ViewModels.MainMenuViewModel.MainMenuViewModel C# (CSharp) Method

MainMenuViewModel() public method

public MainMenuViewModel ( ) : Collections.Core.ViewModels.Samples.LargeDynamic
return Collections.Core.ViewModels.Samples.LargeDynamic
        public MainMenuViewModel()
        {
            MenuItems = new List<MenuItem>
                {
                    new MenuItem("Small Fixed Collection", this, typeof (SmallFixedViewModel)),
                    new MenuItem("Small Dynamic Collection", this, typeof (SmallDynamicViewModel)),
                    new MenuItem("Large Fixed Collection", this, typeof (LargeFixedViewModel)),
                    new MenuItem("Large Dynamic Collection", this, typeof (LargeDynamicViewModel)),
                    new MenuItem("Polymorphic Collection", this, typeof (PolymorphicListItemTypesViewModel)),
                    new MenuItem("Specific Positions Collection", this, typeof (SpecificPositionsViewModel)),
					new MenuItem("Expandable Collection", this, typeof (ExpandableViewModel)),
                };
        }
MainMenuViewModel