private void but_new_Click(object sender, EventArgs e)
        {
            HCSCM_costcenter_manage_new hcsm = new HCSCM_costcenter_manage_new(getdt, null);

            //获取一个值,指是否在Windows任务栏中显示窗体。
            hcsm.ShowInTaskbar = false;
            hcsm.ShowDialog();
            if (hcsm.type != "")
            {
                Loaddata(hcsm.type);
                this.cb_type.Text = sl_type01[hcsm.type].ToString();
                if (dgv_01.Rows.Count > 0)
                {
                    dgv_01.CurrentRow = dgv_01.Rows[dgv_01.RowCount - 1];
                }
            }
        }
        private void but_edit_Click(object sender, EventArgs e)
        {
            if (this.dgv_01.SelectedRows.Count <= 0)
            {
                MessageBox.Show(PromptMessageXmlHelper.Instance.GetPromptMessage("choicechange", EnumPromptMessage.warning, new string[] { "修改的", "成本中心" }), "提示信息", MessageBoxButtons.OK, MessageBoxIcon.Information);
                return;
            }
            int        selectedIndex = dgv_01.Rows.IndexOf(dgv_01.SelectedRows[0]);
            SortedList slindata      = new SortedList();

            try
            {
                slindata.Add("id", dgv_01.SelectedRows[0].Cells["id"].Value);
                slindata.Add("bar_code", dgv_01.SelectedRows[0].Cells["bar_code"].Value);
                slindata.Add("ca_name", dgv_01.SelectedRows[0].Cells["ca_name"].Value);
                slindata.Add("custmer_cnumber", dgv_01.SelectedRows[0].Cells["custmer_cnumber"].Value == null ? string.Empty : dgv_01.SelectedRows[0].Cells["custmer_cnumber"].Value);
                slindata.Add("cu_id", dgv_01.SelectedRows[0].Cells["cu_id"].Value == null ? string.Empty : dgv_01.SelectedRows[0].Cells["cu_id"].Value);
                slindata.Add("ca_remarks", dgv_01.SelectedRows[0].Cells["ca_remarks"].Value == null ? string.Empty : dgv_01.SelectedRows[0].Cells["ca_remarks"].Value);
                HCSCM_costcenter_manage_new hcsm = new HCSCM_costcenter_manage_new(getdt, slindata);
                //获取一个值,指是否在Windows任务栏中显示窗体。
                hcsm.ShowInTaskbar = false;
                hcsm.ShowDialog();
                string str = hcsm.type;
                if (hcsm.type != "")
                {
                    Loaddata(hcsm.type);
                    this.cb_type.Text = sl_type01[hcsm.type].ToString();
                }
                if (dgv_01.Rows.Count > selectedIndex)
                {
                    dgv_01.CurrentRow = dgv_01.Rows[selectedIndex];
                }
            }
            catch (Exception ex)
            {
                MessageBox.Show(PromptMessageXmlHelper.Instance.GetPromptMessage("unknowerror", EnumPromptMessage.error, new string[] { ex.Message }), "错误信息", MessageBoxButtons.OK, MessageBoxIcon.Error);
            }
        }