Beispiel #1
0
        static void Main()
        {
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);

            PDFJoinerPresenter presenter = new PDFJoinerPresenter();
            PDFJoinerModel     model     = new PDFJoinerModel();

            Application.Run(new PDFJoinerView(presenter, model));
        }
 public PDFJoinerView(PDFJoinerPresenter presenter, PDFJoinerModel model)
     : this()
 {
     presenter.Init(this, model);
 }