Ejemplo n.º 1
0
        public void addSceneConfig(string[] games)
        {
            controlLineList = controlLineList.addControlLine(games);
            pnlSceneConfig.Controls.AddRange(controlLineList.draw(controlLineList.getLength()));

            btnAddSceneConfig.Location = new Point(6, 22 + 37 * controlLineList.getLength());

            controlLineList.fillComboboxes(sceneNamesStr);
        }
Ejemplo n.º 2
0
 public int getLength()
 {
     return(1 + next.getLength());
 }
Ejemplo n.º 3
0
 private void btnAddSceneConfig_LocationChanged(object sender, EventArgs e)
 {
     pnlSceneConfig.Size = new Size(pnlSceneConfig.Size.Width, 52 + 37 * controlLineList.getLength());
 }