Example #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);
 }
Example #2
0
 public PosCBHandler(PosForm posf)
 {
     this.posf = posf;
 }
Example #3
0
 public PosSystem(PosForm posf)
 {
     this.posf = posf;
 }