/// <summary> /// 修改焦点对象 /// </summary> public void UpdateObject() { //获取焦点对象 PSP_EachList obj = FocusedObject; if (obj == null) { return; } //创建对象的一个副本 PSP_EachList objCopy = new PSP_EachList(); DataConverter.CopyTo <PSP_EachList>(obj, objCopy); //执行修改操作 using (FrmPSP_EachListDialog dlg = new FrmPSP_EachListDialog()) { dlg.Object = objCopy; //绑定副本 if (dlg.ShowDialog() != DialogResult.OK) { return; } } //用副本更新焦点对象 DataConverter.CopyTo <PSP_EachList>(objCopy, obj); //刷新表格 gridControl.RefreshDataSource(); }
/// <summary> /// 添加对象 /// </summary> /// public void AddObjecta(string type, bool bl) { //检查对象链表是否已经加载 if (ObjectList == null) { return; } //新建对象 PSP_EachList obj = new PSP_EachList(); obj.Types = type; obj.CreateDate = DateTime.Now; //执行添加操作 using (FrmPSP_EachListDialog dlg = new FrmPSP_EachListDialog()) { dlg.IsCreate = true; //设置新建标志 dlg.Object = obj; dlg.IsPower = true; dlg.IsJSXM = isjsxm; dlg.bl = bl; if (dlg.ShowDialog() != DialogResult.OK) { return; } } //将新对象加入到链表中 ObjectList.Add(obj); //刷新表格,并将焦点行定位到新对象上。 gridControl.RefreshDataSource(); GridHelper.FocuseRow(this.gridView, obj); }
/// <summary> /// ��Ӷ��� /// </summary> /// public void AddObjecta(string type, bool bl) { //�����������Ƿ��Ѿ����� if (ObjectList == null) { return; } //�½����� PSP_EachList obj = new PSP_EachList(); obj.Types = type; obj.CreateDate = DateTime.Now; //ִ����Ӳ��� using (FrmPSP_EachListDialog dlg = new FrmPSP_EachListDialog()) { dlg.IsCreate = true; //�����½���־ dlg.Object = obj; dlg.IsPower = true; dlg.IsJSXM = isjsxm; dlg.bl = bl; if (dlg.ShowDialog() != DialogResult.OK) { return; } } //���¶�����뵽������ ObjectList.Add(obj); //ˢ�±���������ж�λ���¶����ϡ� gridControl.RefreshDataSource(); GridHelper.FocuseRow(this.gridView, obj); }
/// <summary> /// �Ľ������ /// </summary> public void UpdateObject() { //��ȡ������� PSP_EachList obj = FocusedObject; if (obj == null) { return; } //���������һ������ PSP_EachList objCopy = new PSP_EachList(); DataConverter.CopyTo<PSP_EachList>(obj, objCopy); //ִ���IJ��� using (FrmPSP_EachListDialog dlg = new FrmPSP_EachListDialog()) { dlg.Object = objCopy; //���� if (dlg.ShowDialog() != DialogResult.OK) { return; } } //�ø������½������ DataConverter.CopyTo<PSP_EachList>(objCopy, obj); //ˢ�±�� gridControl.RefreshDataSource(); }