Пример #1
0
        /// <summary>
        /// Initializes a new instance of the <see cref="MainWindow"/> class.
        /// </summary>
        public MainWindow()
        {
            InitializeComponent();
            this._NumberOfTabs = 0;
            this.CreateTab();

            this.splitContainer1.Panel1Collapsed = true;
            this.splitContainer1.Panel1.Hide();

            this._PagePresenter = new PagePresenter(this);
            this._HistoryPresenter = new HistoryPresenter(this);
            this._FavouritesPresenter = new FavouritesPresenter(this);
            this._PrintPresenter = new PrintPresenter(this);

            LoadHomePage();
        }