示例#1
0
        private void butAdd_Click(object sender, EventArgs e)
        {
            FormServiceManage FormS = new FormServiceManage("OpenDent", false, true);

            FormS.ShowDialog();
            FillList();
        }
示例#2
0
文件: FormMain.cs 项目: mnisl/OD
		private void listMain_DoubleClick(object sender,EventArgs e) {
			if(listMain.SelectedIndex==-1) {
				return;
			}
			FormServiceManage FormS=new FormServiceManage(listMain.SelectedItem.ToString());
			FormS.ShowDialog();
			FillList();
		}
示例#3
0
        private void butAdd_Click(object sender, EventArgs e)
        {
            FormServiceManage FormS = new FormServiceManage();

            FormS.allOpenDentServices = serviceControllerList;
            FormS.ShowDialog();
            FillList();
        }
示例#4
0
		private void listMain_DoubleClick(object sender,EventArgs e) {
			if(listMain.SelectedIndex==-1) {
				return;
			}
			FormServiceManage FormS=new FormServiceManage();
			FormS.allOpenDentServices=serviceControllerList;
			FormS.ServControllerCur=serviceControllerList[listMain.SelectedIndex];
			FormS.ShowDialog();
			FillList();
		}
示例#5
0
        private void listMain_DoubleClick(object sender, EventArgs e)
        {
            if (listMain.SelectedIndex == -1)
            {
                return;
            }
            FormServiceManage FormS = new FormServiceManage(listMain.SelectedItem.ToString(), false, false);

            FormS.ShowDialog();
            FillList();
        }
示例#6
0
        private void listMain_DoubleClick(object sender, EventArgs e)
        {
            if (listMain.SelectedIndex == -1)
            {
                return;
            }
            FormServiceManage FormS = new FormServiceManage();

            FormS.allOpenDentServices = serviceControllerList;
            FormS.ServControllerCur   = serviceControllerList[listMain.SelectedIndex];
            FormS.ShowDialog();
            FillList();
        }
示例#7
0
文件: FormMain.cs 项目: mnisl/OD
		private void butAdd_Click(object sender,EventArgs e) {
			FormServiceManage FormS=new FormServiceManage("OpenDent");
			FormS.ShowDialog();
			FillList();
		}
示例#8
0
		private void butAdd_Click(object sender,EventArgs e) {
			FormServiceManage FormS=new FormServiceManage();
			FormS.allOpenDentServices=serviceControllerList;
			FormS.ShowDialog();
			FillList();
		}