XebiaLabs.Deployit.UI.ViewModels.EntryItemViewModel.LoadChildren C# (CSharp) Method

LoadChildren() protected method

protected LoadChildren ( ) : void
return void
		protected override void LoadChildren()
		{
		    (from property in _descriptor.Properties
                 where property.AsContainment
                 select new PropertyItemViewModel(property, this, _editor)
            )
            .ToList()
            .ForEach(Children.Add);
		}