diff --git a/Properties/Resources.Designer.cs b/Properties/Resources.Designer.cs
index a5c1fe8..7886d39 100644
--- a/Properties/Resources.Designer.cs
+++ b/Properties/Resources.Designer.cs
@@ -303,6 +303,15 @@ namespace SunlightCentralizedControlManagement_SCCM_.Properties {
}
}
+ ///
+ /// 查找类似 Color 的本地化字符串。
+ ///
+ public static string Color {
+ get {
+ return ResourceManager.GetString("Color", resourceCulture);
+ }
+ }
+
///
/// 查找类似 Compute 的本地化字符串。
///
diff --git a/Properties/Resources.en-US.resx b/Properties/Resources.en-US.resx
index 264c930..fa18c67 100644
--- a/Properties/Resources.en-US.resx
+++ b/Properties/Resources.en-US.resx
@@ -936,4 +936,7 @@
Multi
+
+ Color
+
\ No newline at end of file
diff --git a/Properties/Resources.resx b/Properties/Resources.resx
index 6b7f391..2436b6a 100644
--- a/Properties/Resources.resx
+++ b/Properties/Resources.resx
@@ -936,4 +936,7 @@
Multi
+
+ Color
+
\ No newline at end of file
diff --git a/Properties/Resources.zh-CN.resx b/Properties/Resources.zh-CN.resx
index dc1e303..8fb671d 100644
--- a/Properties/Resources.zh-CN.resx
+++ b/Properties/Resources.zh-CN.resx
@@ -936,4 +936,7 @@
多机
+
+ 颜色
+
\ No newline at end of file
diff --git a/View/ProductionPlanningEdit.xaml b/View/ProductionPlanningEdit.xaml
index 5525274..026b66b 100644
--- a/View/ProductionPlanningEdit.xaml
+++ b/View/ProductionPlanningEdit.xaml
@@ -18,6 +18,8 @@
+
("EndTime").ToString(); //读取计划表写入缓存
if (DateTime.Now < DateTime.Parse(sTime))
{
- StartTime_=DateTime.Parse(sTime).AddMinutes(1).ToString("yy/MM/dd HH:mm:ss");
+ StartTime_=DateTime.Parse(sTime).AddMinutes(1).ToString("yyyy/M/d HH:mm:ss");
}
else
{
- StartTime_= DateTime.Now.AddMinutes(1).ToString("yy/MM/dd HH:mm:ss");
+ StartTime_= DateTime.Now.AddMinutes(1).ToString("yyyy/M/d HH:mm:ss");
}
}
catch (Exception)
{
- StartTime_= DateTime.Now.AddMinutes(1).ToString("yy/MM/dd HH:mm:ss");
+ StartTime_= DateTime.Now.AddMinutes(1).ToString("yyyy/M/d HH:mm:ss");
}
SQLiteHelpers.Close(); //关闭连接
string Time_ = DateTime.Parse(ProgramName.Select("ProgramName='" + ProgramName_ + "'").
First().Field