patrick.xu
2021-05-24 f13235bee2e25d091ba13dc3732b83f905565f80
plc操作屏蔽添加安全密码
3个文件已修改
12 ■■■■■ 已修改文件
FormPlcOperation.Designer.cs 2 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
FormPlcOperation.cs 6 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
Properties/AssemblyInfo.cs 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
FormPlcOperation.Designer.cs
@@ -128,7 +128,6 @@
            this.cbPingbiSafeGuard.Text = "遮罩安全門";
            this.cbPingbiSafeGuard.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
            this.cbPingbiSafeGuard.UseVisualStyleBackColor = true;
            this.cbPingbiSafeGuard.CheckedChanged += new System.EventHandler(this.cbPingbiSafeGuard_CheckedChanged);
            // 
            // cbPingbiGuangshan
            // 
@@ -143,7 +142,6 @@
            this.cbPingbiGuangshan.Text = "遮罩光柵";
            this.cbPingbiGuangshan.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
            this.cbPingbiGuangshan.UseVisualStyleBackColor = true;
            this.cbPingbiGuangshan.CheckedChanged += new System.EventHandler(this.cbPingbiGuangshan_CheckedChanged);
            // 
            // FormPlcOperation
            // 
FormPlcOperation.cs
@@ -25,6 +25,12 @@
            _opc.ReadOneItem_Wrapper(OPCOutputTag.PingbiSafeGuard, ref result);
            cbPingbiSafeGuard.Checked = result != null && (bool)result ? true : false;
            this.Load += (s, e) =>
              {
                  cbPingbiGuangshan.CheckedChanged += cbPingbiGuangshan_CheckedChanged;
                  cbPingbiSafeGuard.CheckedChanged += cbPingbiSafeGuard_CheckedChanged;
              };
        }
        private void cbLoadRbtAlarm_CheckedChanged(object sender, EventArgs e)
Properties/AssemblyInfo.cs
@@ -32,5 +32,5 @@
// 可以指定所有这些值,也可以使用“内部版本号”和“修订号”的默认值,
// 方法是按如下所示使用“*”:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.1.0")]
[assembly: AssemblyFileVersion("1.0.1.0")]
[assembly: AssemblyVersion("1.0.1.1")]
[assembly: AssemblyFileVersion("1.0.1.1")]