Exemplo n.º 1
0
        /// <summary>
        /// 修改焦点对象
        /// </summary>
        public void UpdateObject()
        {
            //获取焦点对象
            RtfAttachFiles obj = FocusedObject;

            if (obj == null)
            {
                return;
            }

            //创建对象的一个副本
            RtfAttachFiles objCopy = new RtfAttachFiles();

            DataConverter.CopyTo <RtfAttachFiles>(obj, objCopy);

            //执行修改操作
            using (FrmRtfAttachFilesDialog dlg = new FrmRtfAttachFilesDialog())
            {
                dlg.Object = objCopy;                   //绑定副本
                if (dlg.ShowDialog() != DialogResult.OK)
                {
                    return;
                }
            }

            //用副本更新焦点对象
            DataConverter.CopyTo <RtfAttachFiles>(objCopy, obj);
            //刷新表格
            gridControl.RefreshDataSource();
        }
Exemplo n.º 2
0
        /// <summary>
        /// 添加对象
        /// </summary>
        public void AddObject()
        {
            //检查对象链表是否已经加载
            if (ObjectList == null)
            {
                return;
            }
            //新建对象
            RtfAttachFiles obj = new RtfAttachFiles();

            obj.C_UID      = catygory;
            obj.CreateDate = (DateTime)Services.BaseService.GetObject("SelectSysData", null);

            //执行添加操作
            using (FrmRtfAttachFilesDialog dlg = new FrmRtfAttachFilesDialog())
            {
                dlg.IsCreate = true;                    //设置新建标志
                dlg.Object   = obj;
                if (dlg.ShowDialog() != DialogResult.OK)
                {
                    return;
                }
            }

            //将新对象加入到链表中
            ObjectList.Add(obj);

            //刷新表格,并将焦点行定位到新对象上。
            gridControl.RefreshDataSource();
            GridHelper.FocuseRow(this.gridView, obj);
        }
Exemplo n.º 3
0
        /// <summary>
        /// �޸Ľ������
        /// </summary>
        public void UpdateObject()
        {
            //��ȡ�������
            RtfAttachFiles obj = FocusedObject;
            if (obj == null)
            {
                return;
            }

            //���������һ������
            RtfAttachFiles objCopy = new RtfAttachFiles();
            DataConverter.CopyTo<RtfAttachFiles>(obj, objCopy);

            //ִ���޸IJ���
            using (FrmRtfAttachFilesDialog dlg = new FrmRtfAttachFilesDialog())
            {
                dlg.Object = objCopy;   //�󶨸���
                if (dlg.ShowDialog() != DialogResult.OK)
                {
                    return;
                }
            }

            //�ø������½������
            DataConverter.CopyTo<RtfAttachFiles>(objCopy, obj);
            //ˢ�±��
            gridControl.RefreshDataSource();
        }
Exemplo n.º 4
0
        /// <summary>
        /// ��Ӷ���
        /// </summary>
        public void AddObject()
        {
            //�����������Ƿ��Ѿ�����
            if (ObjectList == null)
            {
                return;
            }
            //�½�����
            RtfAttachFiles obj = new RtfAttachFiles();
            obj.C_UID = catygory;
            obj.CreateDate = (DateTime)Services.BaseService.GetObject("SelectSysData", null);

            //ִ����Ӳ���
            using (FrmRtfAttachFilesDialog dlg = new FrmRtfAttachFilesDialog())
            {
                dlg.IsCreate = true;    //�����½���־
                dlg.Object = obj;
                if (dlg.ShowDialog() != DialogResult.OK)
                {
                    return;
                }
            }

            //���¶�����뵽������
            ObjectList.Add(obj);

            //ˢ�±�񣬲��������ж�λ���¶����ϡ�
            gridControl.RefreshDataSource();
            GridHelper.FocuseRow(this.gridView, obj);
        }