Example #1
0
        //厅包管理
        private void buttonfenlei_Click(object sender, EventArgs e)
        {
            HallInfoList hiList = new HallInfoList();

            hiList.RefreshHallEvent += RefreshHallInfo;
            hiList.Show();
        }
Example #2
0
        private void btnHallInfo_Click(object sender, EventArgs e)
        {
            HallInfoList hil = HallInfoList.Create();

            hil.UpdateHallInfoEvent += UpdateHallInfo;
            hil.Show();
            hil.Focus();
        }
Example #3
0
 public static HallInfoList Create()
 {
     if (hil == null || hil.IsDisposed)
     {
         hil = new HallInfoList();
     }
     return(hil);
 }
Example #4
0
        private void btnAddHall_Click(object sender, EventArgs e)
        {
            HallInfoList hiList = FormFactory.CreatehHallInfoList();

            hiList.UpdateHallEvent += UpdateHall;
            hiList.Show();
            hiList.Focus();
        }
Example #5
0
        private void btnAddHall_Click(object sender, EventArgs e)
        {
            HallInfoList hallInfoList = HallInfoList.Create();

            hallInfoList.LoadType += LoadSearch;
            hallInfoList.Show();
            hallInfoList.Focus();
        }
Example #6
0
 public static HallInfoList CreatehHallInfoList()
 {
     if (_dishInfoList == null || _dishInfoList.IsDisposed)
     {
         _hallInfoList = new HallInfoList();
     }
     return(_hallInfoList);
 }