/// <summary> /// 显示其他信息页面 /// </summary> /// <param name="info"></param> public void ShowUCOthers(UCOthers info, IemMainPageInfo m_pageInfo) { //this.ResumeLayout(); //this.Height = info.Height + 10; //this.Width = info.Width + 10; this.Text = "其他信息编辑"; this.Controls.Clear(); this.Controls.Add(info); //info.Dock = DockStyle.Fill; info.FillUI(m_pageInfo, m_app); }
/// <summary> /// 编辑费用信息 /// </summary> /// <param name="sender"></param> /// <param name="e"></param> private void simpleButton6_Click(object sender, EventArgs e) { SetWaitDialogCaption("正在加载数据"); if (m_UCOthers == null) { m_UCOthers = new UCOthers(); } ShowUCForm.ShowUCOthers(m_UCOthers, info); ShowUCForm.StartPosition = FormStartPosition.CenterScreen; HideWaitDialog(); if (ShowUCForm.ShowDialog() == DialogResult.OK) { info = ShowUCForm.m_info; } RefreshForm(); }