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