/// <summary> /// Load Info Pane and disable all others. /// </summary> /// <param name="sender"></param> /// <param name="e"></param> private void titleInfoToolStripMenuItem_Click(object sender, EventArgs e) { if (contentPane.active) { contentPane.Disable(); editPane.Disable(); load_infoPane(); } }
/// <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); }