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