Esempio n. 1
0
 /// <summary>
 /// 刷新影片维护窗体信息
 /// </summary>
 private void RefreshfrmFilmInfoManage()
 {
     if (this.EventRefresh == null)
     {
         foreach (Form objfrom in this.MdiParent.MdiChildren)
         {
             if (objfrom is frmFilmInfoManage)
             {
                 frmFilmInfoManage frm = (frmFilmInfoManage)objfrom;
                 this.EventRefresh += new DelegateRefresh(frm.RefreshDataList);
                 break;
             }
         }
     }
     if (this.EventRefresh != null)
     {
         this.EventRefresh();
     }
 }
Esempio n. 2
0
        private void toolStripButton4_Click(object sender, EventArgs e)
        {
            frmFilmInfoManage frm = new frmFilmInfoManage();

            ShowChildForm(frm);
        }