예제 #1
0
 static void Main()
 {
     Application.EnableVisualStyles();
     Application.SetCompatibleTextRenderingDefault(false);
     PosForm posf = new PosForm();
     PosSystem poss = new PosSystem(posf);
     posf.setPosSystem(poss);
     Application.Run(posf);
 }
예제 #2
0
 public void setPosSystem(PosSystem poss)
 {
     this.poss = poss;
     cmbofuel.SelectedIndex = 0;
 }