AdvancedLauncher.UI.Pages.ResourceViewModel.LoadData C# (CSharp) Method

LoadData() public method

public LoadData ( List List ) : void
List List
return void
        public void LoadData(List<ResourceItemViewModel> List)
        {
            this.IsDataLoaded = true;
            foreach (ResourceItemViewModel item in List)
                this.Items.Add(item);
            NotifyPropertyChanged("Items");
        }