using System; using System.Collections.Generic; using System.ComponentModel; using System.Drawing; using System.Data; using System.Linq; using System.Text; using System.Windows.Forms; using Infragistics.Win.UltraWinGrid; using Infragistics.Win.UltraWinEditors; //基本信息显示区 namespace Core.StlMes.Client.Lims.Data.PipeAndOutdec { public partial class OutdecShowBase : UserControl { public OutdecShowBase() { InitializeComponent(); } private void OutdecShowBase_Load(object sender, EventArgs e) { } //显示基本信息 /// /// 显示基本信息 /// /// public void ShowBaseInfo(UltraGridRow ur) { PublicPipeAndOutdec.ShowBaseInfo(ur, panel1); } //改变控件名字 /// /// 改变控件名字 /// public void ChangeLabel() { labSAMPLE_NO.Text = "试样号"; //labSAMPLE_NO.Location = new System.Drawing.Point(24, 62); } } }