Commit 8843c29a LN

1

1 个父辈 f37d8909
......@@ -361,6 +361,7 @@
this.btnUpDownUp.TabIndex = 252;
this.btnUpDownUp.Text = "升降上升";
this.btnUpDownUp.UseVisualStyleBackColor = false;
this.btnUpDownUp.Visible = false;
this.btnUpDownUp.Click += new System.EventHandler(this.btnUpDownUp_Click);
//
// btnBeforeAfterBefore
......@@ -565,7 +566,7 @@
this.tabPage2.Controls.Add(this.axisMoveControl1);
this.tabPage2.Location = new System.Drawing.Point(4, 26);
this.tabPage2.Name = "tabPage2";
this.tabPage2.Size = new System.Drawing.Size(1299, 427);
this.tabPage2.Size = new System.Drawing.Size(1299, 436);
this.tabPage2.TabIndex = 1;
this.tabPage2.Text = "伺服调试";
this.tabPage2.UseVisualStyleBackColor = true;
......
......@@ -44,6 +44,7 @@ namespace OnlineStore.AssemblyLine
cmbSizeList.Items.Add(i.ToString());
}
cmbSizeList.SelectedIndex = 0;
btnUpDownUp.Visible = false;
}
else
{
......
......@@ -156,19 +156,8 @@ namespace OnlineStore.DeviceLibrary
}
else if (id.Equals(0))
{
cioList = new List<string>();
cioList.AddRange(ioList);
//List<string> removeList = new List<string>() {
// "192.168.101.22",
// "192.168.101.23"
//};
//foreach (string s in removeList)
//{
// if (cioList.Contains(s))
// {
// cioList.Remove(s);
// }
//}
cioList = new List<string>(ioList);
break;
}
}
}
......
支持 Markdown 格式
你添加了 0 到此讨论。请谨慎行事。
Finish editing this message first!