using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CtrEditor { //public class SimulationViewModel : INotifyPropertyChanged //{ // private ObservableCollection _simulatedObjects; // public ObservableCollection SimulatedObjects // { // get => _simulatedObjects; // set { _simulatedObjects = value; OnPropertyChanged(); } // } // public SimulationViewModel() // { // SimulatedObjects = new ObservableCollection // { // new ObjetoSimuladoBotella(), // Suponiendo que estos controles no requieren parámetros en el constructor // new ObjetoSimuladoPack() // }; // } // // Implementación de INotifyPropertyChanged aquí //} }