namespace HStation.WinFrmUI
|
{
|
public partial class XhsProjectSimulationProjectInfoCtrl : DevExpress.XtraEditors.XtraUserControl
|
{
|
public XhsProjectSimulationProjectInfoCtrl()
|
{
|
InitializeComponent();
|
this.layoutControl1.SetupLayoutControl();
|
}
|
|
private XhsProjectVmo _project = null;//项目
|
|
|
/// <summary>
|
/// 绑定数据
|
/// </summary>
|
public void SetBindingData(XhsProjectVmo project)
|
{
|
_project = project;
|
if (_project != null)
|
{
|
this.txtNO.EditValue = _project.NO;
|
this.txtName.EditValue = _project.Name;
|
this.txtCustomer.EditValue = _project.Customer;
|
this.txtAddress.EditValue = _project.Address;
|
this.txtFlags.EditValue = Yw.Untity.FlagsHelper.ToString(_project.Flags);
|
this.txtTagNme.EditValue = _project.TagName;
|
this.txtDescription.EditValue = _project.Description;
|
}
|
}
|
|
}
|
}
|