Пример #1
0
        public ReiterateEvent(string id, string name, int time)
        {
            ID = id;
            Name = name;
            Time = time;
            Parent = null;

            MoveEvents = new List<MoveEvent>();
        }
Пример #2
0
        public ReiterateEvent()
        {
            ID = string.Empty;
            Name = string.Empty;
            Time = 0;
            Parent = null;

            MoveEvents = new List<MoveEvent>();
        }
Пример #3
0
        public PreviewViewComponentPanel()
        {
            myHelper = new ViewPanelHelper(this, UpdateType.Component);

            InitializeComponent();
            customTabPage1.Description = _description;

            _sim = new VSG.PreviewSimulator.PreviewSimulator(agT_CanvasControl1);
            _sim.TickUpdateCallback = new TickUpdateDelegate(this.UpdateUI);

            vsgController = (VSGController)AMEManager.Instance.Get("VSG");
            vsgController.RegisterForUpdate(this);

            comboBox1.SelectedIndex = 3;
            
        }
Пример #4
0
 public void Dispose()
 {
     Parent = null;
 }