diff --git a/Properties/Resources.Designer.cs b/Properties/Resources.Designer.cs index ade6751..d898745 100644 --- a/Properties/Resources.Designer.cs +++ b/Properties/Resources.Designer.cs @@ -150,6 +150,15 @@ namespace SunlightCentralizedControlManagement_SCCM_.Properties { } } + /// + /// 查找类似 BathRatio 的本地化字符串。 + /// + public static string BathRatio { + get { + return ResourceManager.GetString("BathRatio", resourceCulture); + } + } + /// /// 查找类似 Before 的本地化字符串。 /// @@ -258,6 +267,15 @@ namespace SunlightCentralizedControlManagement_SCCM_.Properties { } } + /// + /// 查找类似 Client 的本地化字符串。 + /// + public static string Client { + get { + return ResourceManager.GetString("Client", resourceCulture); + } + } + /// /// 查找类似 ClothIntake 的本地化字符串。 /// @@ -276,6 +294,24 @@ namespace SunlightCentralizedControlManagement_SCCM_.Properties { } } + /// + /// 查找类似 ClothSpecies 的本地化字符串。 + /// + public static string ClothSpecies { + get { + return ResourceManager.GetString("ClothSpecies", resourceCulture); + } + } + + /// + /// 查找类似 ClothWeight 的本地化字符串。 + /// + public static string ClothWeight { + get { + return ResourceManager.GetString("ClothWeight", resourceCulture); + } + } + /// /// 查找类似 ClothWheel 的本地化字符串。 /// @@ -321,6 +357,15 @@ namespace SunlightCentralizedControlManagement_SCCM_.Properties { } } + /// + /// 查找类似 ColorNumber 的本地化字符串。 + /// + public static string ColorNumber { + get { + return ResourceManager.GetString("ColorNumber", resourceCulture); + } + } + /// /// 查找类似 Compute 的本地化字符串。 /// @@ -2436,6 +2481,15 @@ namespace SunlightCentralizedControlManagement_SCCM_.Properties { } } + /// + /// 查找类似 Total 的本地化字符串。 + /// + public static string Total { + get { + return ResourceManager.GetString("Total", resourceCulture); + } + } + /// /// 查找类似 trce 的本地化字符串。 /// diff --git a/Properties/Resources.en-US.resx b/Properties/Resources.en-US.resx index 7f9c931..1bcd4bf 100644 --- a/Properties/Resources.en-US.resx +++ b/Properties/Resources.en-US.resx @@ -975,4 +975,22 @@ Attached + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Properties/Resources.resx b/Properties/Resources.resx index 158a2e7..9109a30 100644 --- a/Properties/Resources.resx +++ b/Properties/Resources.resx @@ -975,4 +975,22 @@ Attached + + ColorNumber + + + Client + + + ClothSpecies + + + ClothWeight + + + BathRatio + + + Total + \ No newline at end of file diff --git a/Properties/Resources.zh-CN.resx b/Properties/Resources.zh-CN.resx index f078572..4353c17 100644 --- a/Properties/Resources.zh-CN.resx +++ b/Properties/Resources.zh-CN.resx @@ -975,4 +975,22 @@ + + 色号 + + + 客户 + + + 布种 + + + 布重 + + + 浴比 + + + 总浴量 + \ No newline at end of file diff --git a/Properties/Resources.zh-TW.resx b/Properties/Resources.zh-TW.resx index 19177ae..84ad9b8 100644 --- a/Properties/Resources.zh-TW.resx +++ b/Properties/Resources.zh-TW.resx @@ -972,4 +972,22 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/View/ProductionPlanningView.xaml.cs b/View/ProductionPlanningView.xaml.cs index eee385c..36dff80 100644 --- a/View/ProductionPlanningView.xaml.cs +++ b/View/ProductionPlanningView.xaml.cs @@ -123,7 +123,16 @@ namespace SunlightCentralizedControlManagement_SCCM_.View Name = Properties.Resources.ProcessName + ";" + dataRows[j].Field("ProgramName"), Background = colorBackground, Status = colorStatus, - ID = dataRows[j].Field("WorkOrder"), + ID = Properties.Resources.WorkOrder + ";" + dataRows[j].Field("WorkOrder"), + Dyelot = Properties.Resources.Dyelot + ";" + dataRows[j].Field("Dyelot"), + Remark = Properties.Resources.Remark + ";" + dataRows[j].Field("Remark"), + ColorNumber = Properties.Resources.ColorNumber + ";" + dataRows[j].Field("ColorNumber"), + Client = Properties.Resources.Client + ";" + dataRows[j].Field("Client"), + ClothSpecies = Properties.Resources.ClothSpecies + ";" + dataRows[j].Field("ClothSpecies"), + // ClothWeight = Properties.Resources.ClothWeight + ";" + dataRows[j].Field("ClothWeight"), + // BathRatio = Properties.Resources.BathRatio + ";" + dataRows[j].Field("BathRatio"), + // Total = Properties.Resources.Total + ";" + dataRows[j].Field("Total"), + // USER = Properties.Resources.USER + ";" + dataRows[j].Field("user"), TaskProgressVisibility = System.Windows.Visibility.Hidden }); } diff --git a/WindowsView/ViewStep.xaml.cs b/WindowsView/ViewStep.xaml.cs index 9c9c1b2..dc2dcb5 100644 --- a/WindowsView/ViewStep.xaml.cs +++ b/WindowsView/ViewStep.xaml.cs @@ -1,4 +1,4 @@ -using SunlightCentralizedControlManagement_SCCM_.WindowsView; + using SunlightCentralizedControlManagement_SCCM_.WindowsView; using ScottPlot.Palettes; using System; using System.Collections.Generic;