Example #1
0
        /// <summary>
        /// Load child Panes and components.
        /// </summary>
        public mainView(MainForm main)
        {
            InitializeComponent();
            caller = main;
            DoubleBuffered = true;
            btnCategory_Click(btnCate_TV, null);
            populateList();
            infoPane = new infoPane();
            contentPane = new contentsPane(caller);
            editPane = new editPane();
            panelMain.Controls.Add(infoPane);
            panelMain.Controls.Add(contentPane);
            panelMain.Controls.Add(editPane);
            infoPane.Enable();
            contentPane.Disable();
            editPane.Disable();

            txtSearch.Enter += new EventHandler(c_Enter);
            gvTitles.Enter += new EventHandler(c_Enter);
        }
Example #2
0
        /// <summary>
        /// Load child Panes and components.
        /// </summary>
        public mainView(MainForm main)
        {
            InitializeComponent();
            caller         = main;
            DoubleBuffered = true;
            btnCategory_Click(btnCate_TV, null);
            populateList();
            infoPane    = new infoPane();
            contentPane = new contentsPane(caller);
            editPane    = new editPane();
            panelMain.Controls.Add(infoPane);
            panelMain.Controls.Add(contentPane);
            panelMain.Controls.Add(editPane);
            infoPane.Enable();
            contentPane.Disable();
            editPane.Disable();

            txtSearch.Enter += new EventHandler(c_Enter);
            gvTitles.Enter  += new EventHandler(c_Enter);
        }