From 25d1bf4c50f43cf6690c5ac92824959865c9d78f Mon Sep 17 00:00:00 2001 From: ningshuxia <ningshuxia0927@outlook.com> Date: 星期四, 13 三月 2025 10:34:40 +0800 Subject: [PATCH] BoxViewModel --- WinFrmUI/PBS.WinFrmUI/01-place/00-core/BuildWizardForm.cs | 88 ++++++++++++++++++++++++++++++------------- 1 files changed, 61 insertions(+), 27 deletions(-) diff --git a/WinFrmUI/PBS.WinFrmUI/01-place/00-core/BuildWizardForm.cs b/WinFrmUI/PBS.WinFrmUI/01-place/00-core/BuildWizardForm.cs index abac8dd..55d08ba 100644 --- a/WinFrmUI/PBS.WinFrmUI/01-place/00-core/BuildWizardForm.cs +++ b/WinFrmUI/PBS.WinFrmUI/01-place/00-core/BuildWizardForm.cs @@ -16,26 +16,6 @@ { bool isExist = true; this.dxErrorProvider1.ClearErrors(); - if (this.cbArea.Text == "璇烽�夋嫨") - { - this.dxErrorProvider1.SetError(this.cbArea, "蹇呭~椤�"); - isExist = false; - } - if (this.cbCity.Text == "璇烽�夋嫨") - { - this.dxErrorProvider1.SetError(this.cbCity, "蹇呭~椤�"); - isExist = false; - } - if (this.cbDist.Text == "璇烽�夋嫨") - { - this.dxErrorProvider1.SetError(this.cbDist, "蹇呭~椤�"); - isExist = false; - } - if (string.IsNullOrEmpty(this.txtName.Text.Trim())) - { - this.dxErrorProvider1.SetError(this.txtName, "蹇呭~椤�"); - isExist = false; - } return isExist; } @@ -45,7 +25,7 @@ { return null; } - var m = new PlaceBuildParasInfo() + /*var m = new PlaceBuildParasInfo() { // Address = txtAddress.Text, // Area = (long?)this.cbArea.EditValue, @@ -60,8 +40,67 @@ PropertyType = 1, ProperTyYears = string.IsNullOrEmpty(txtProperTyYears.Text) ? 0 : int.Parse(txtProperTyYears.Text), TotalHouseHolds = string.IsNullOrEmpty(txtTotalHouseHolds.Text) ? 0 : int.Parse(txtTotalHouseHolds.Text) - }; + };*/ + var m = new PlaceBuildParasInfo(); + // 澶勭悊 AreaSquare + if (string.IsNullOrEmpty(txtAreaSquare.Text) || !decimal.TryParse(txtAreaSquare.Text, out decimal areaSquare)) + { + m.AreaSquare = decimal.Zero; + } + else + { + m.AreaSquare = areaSquare; + } + + // 澶勭悊 CompletionTime + m.CompletionTime = txtCompletionTime.Text; + + // 澶勭悊 Developer + m.Developer = txtDeveloper.Text; + + // 澶勭悊 GreeningRate + if (string.IsNullOrEmpty(textGreeningRate.Text) || !decimal.TryParse(textGreeningRate.Text, out decimal greeningRate)) + { + m.GreeningRate = decimal.Zero; + } + else + { + m.GreeningRate = greeningRate; + } + + // 澶勭悊 PlotRatio + if (string.IsNullOrEmpty(txtPlotRatio.Text) || !decimal.TryParse(txtPlotRatio.Text, out decimal plotRatio)) + { + m.PlotRatio = decimal.Zero; + } + else + { + m.PlotRatio = plotRatio; + } + + // 澶勭悊 PropertyType + m.PropertyType = 1; + + // 澶勭悊 ProperTyYears + if (string.IsNullOrEmpty(txtProperTyYears.Text) || !int.TryParse(txtProperTyYears.Text, out int properTyYears)) + { + m.ProperTyYears = 0; + } + else + { + m.ProperTyYears = properTyYears; + } + + // 澶勭悊 TotalHouseHolds + if (string.IsNullOrEmpty(txtTotalHouseHolds.Text) || !int.TryParse(txtTotalHouseHolds.Text, out int totalHouseHolds)) + { + m.TotalHouseHolds = 0; + } + else + { + m.TotalHouseHolds = totalHouseHolds; + } return m; } @@ -80,11 +119,6 @@ // cbArea.EditValue = model.Area; // cbCity.EditValue = model.City; // cbDist.EditValue = model.Dist; - } - - public string getText() - { - return "a"; } private void BuildWizardForm_Load(object sender, EventArgs e) -- Gitblit v1.9.3