コード例 #1
0
 /// <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();
     }
 }
コード例 #2
0
ファイル: mainView.cs プロジェクト: jollywho/LFI
        /// <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);
        }
コード例 #3
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);
        }