コード例 #1
0
ファイル: Program.cs プロジェクト: jorensorilla/vidtogif
        private static void Main(string[] args)
        {
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);

            ExcelReader er = new ExcelReader();
            MainForm mf = new MainForm();
            Controller controller = new Controller(mf, er);
            mf.setController(controller);

            Application.Run(mf);
        }
コード例 #2
0
ファイル: Controller.cs プロジェクト: jorensorilla/vidtogif
 public Controller(IMainForm mf, ExcelReader er)
 {
     this.mf = mf;
     this.er = er;
 }