Exemplo n.º 1
0
 static void Main()
 {
     Application.EnableVisualStyles();
     Application.SetCompatibleTextRenderingDefault(false);
     MainForm frame = new MainForm();
     RefereeCV3.handler.HandlerForm h = new handler.HandlerForm(frame);
     Application.Run(frame);
 }
Exemplo n.º 2
0
        public HandlerForm(MainForm mainForm)
        {
            instance = this;
            this.frame = mainForm;
            output = new Output(frame);
            menuBar = new MenuBar(frame);
            tabControl = new HandlerTab(frame);

            frame.init();
        }