コード例 #1
0
ファイル: Simulation.cs プロジェクト: heizhai/cp2013team7
 public multiLightCycle(SimulationEnvironment simulation, mainWindow window)
 {
     this.simulation = simulation;
     this.window = window;
     run();
 }
コード例 #2
0
ファイル: Simulation.cs プロジェクト: heizhai/cp2013team7
 public lightCycle(Intersection intersection, mainWindow window)
 {
     this.intersection = intersection;
     this.window = window;
     run();
 }
コード例 #3
0
ファイル: Simulation.cs プロジェクト: heizhai/cp2013team7
 public SimulationEnvironment()
 {
     this.modelIntersection = new Intersection();
     this.window = new mainWindow(modelIntersection, this);
     Application.Run(window);
 }
コード例 #4
0
ファイル: Simulation.cs プロジェクト: heizhai/cp2013team7
 public SimulationFrame(Intersection modelIntersection, mainWindow window)
 {
     this.modelIntersection = modelIntersection;
     this.window = window;
     run();
 }
コード例 #5
0
ファイル: Simulation.cs プロジェクト: heizhai/cp2013team7
 public void setWindow(mainWindow window)
 {
     this.window = window;
 }
コード例 #6
0
ファイル: setVReg.cs プロジェクト: heizhai/cp2013team7
 public setVReg(mainWindow mainForm)
 {
     this.mainForm = mainForm;
     InitializeComponent();
 }