Skip to content
切换导航条
切换导航条
当前项目
正在载入...
登录
刘韬
/
SO827-AutoScanAndLabel
转到一个项目
切换导航栏
切换导航栏固定状态
项目
群组
代码片段
帮助
项目
活动
版本库
流水线
图表
问题
0
合并请求
0
维基
网络
创建新的问题
作业
提交
问题看板
文件
提交
网络
比较
分支
标签
Commit cde4adc1
由
刘韬
编写于
2022-07-21 13:50:19 +0800
浏览文件
选项
浏览文件
标签
下载
电子邮件补丁
差异文件
1
1 个父辈
3f9c25d0
全部展开
隐藏空白字符变更
内嵌
并排
正在显示
6 个修改的文件
包含
5 行增加
和
4 行删除
AutoScanAndLabel/AboutBox1.cs
AutoScanAndLabel/Form1.cs
AutoScanAndLabel/UC/ListEditControl.cs
Common/CodeResourceControl.cs
Common/Common.csproj
Dingtalk_20210218104106.jpg
AutoScanAndLabel/AboutBox1.cs
查看文件 @
cde4adc
...
@@ -123,7 +123,7 @@ namespace AutoScanAndLabel
...
@@ -123,7 +123,7 @@ namespace AutoScanAndLabel
private
void
labelVersion_Click
(
object
sender
,
EventArgs
e
)
private
void
labelVersion_Click
(
object
sender
,
EventArgs
e
)
{
{
ConfigHelper
.
AdvanceConfigForm
.
ShowEditDialog
();
ConfigHelper
.
AdvanceConfigForm
.
ShowEditDialog
(
this
);
}
}
}
}
}
}
AutoScanAndLabel/Form1.cs
查看文件 @
cde4adc
...
@@ -343,7 +343,7 @@ namespace AutoScanAndLabel
...
@@ -343,7 +343,7 @@ namespace AutoScanAndLabel
{
{
Invoke
((
EventHandler
)
delegate
Invoke
((
EventHandler
)
delegate
{
{
btn_releaseleftshelf
.
Text
=
$
"左侧料串等待释放中({timeout / 2})"
;
btn_releaseleftshelf
.
Text
=
string
.
Format
(
"左侧料串等待释放中({0})"
,
timeout
/
2
)
;
});
});
}
}
if
((
RobotManage
.
mainMachine
.
LeftMoveInfo
.
MoveStep
==
MoveStep
.
L20_WaitLabel
||
RobotManage
.
mainMachine
.
LeftMoveInfo
.
MoveStep
==
MoveStep
.
L10_WaitReelPut
)
&&
(
RobotManage
.
mainMachine
.
RightMoveInfo
.
MoveStep
==
MoveStep
.
Wait
||
RobotManage
.
mainMachine
.
RightMoveInfo
.
MoveStep
==
MoveStep
.
REND
))
if
((
RobotManage
.
mainMachine
.
LeftMoveInfo
.
MoveStep
==
MoveStep
.
L20_WaitLabel
||
RobotManage
.
mainMachine
.
LeftMoveInfo
.
MoveStep
==
MoveStep
.
L10_WaitReelPut
)
&&
(
RobotManage
.
mainMachine
.
RightMoveInfo
.
MoveStep
==
MoveStep
.
Wait
||
RobotManage
.
mainMachine
.
RightMoveInfo
.
MoveStep
==
MoveStep
.
REND
))
...
@@ -389,7 +389,7 @@ namespace AutoScanAndLabel
...
@@ -389,7 +389,7 @@ namespace AutoScanAndLabel
{
{
Invoke
((
EventHandler
)
delegate
Invoke
((
EventHandler
)
delegate
{
{
btn_releaserightshelf
.
Text
=
$
"右侧料串等待释放中({timeout / 2})"
;
btn_releaserightshelf
.
Text
=
string
.
Format
(
"右侧料串等待释放中({0})"
,
timeout
/
2
)
;
});
});
}
}
}
}
...
...
AutoScanAndLabel/UC/ListEditControl.cs
查看文件 @
cde4adc
...
@@ -60,7 +60,7 @@ namespace AutoScanAndLabel.UC
...
@@ -60,7 +60,7 @@ namespace AutoScanAndLabel.UC
{
{
if
(
listBox1
.
SelectedIndex
<
0
)
if
(
listBox1
.
SelectedIndex
<
0
)
return
;
return
;
var
rl
=
MessageBox
.
Show
(
$
"确定要删除:\"{listBox1.SelectedItem}\"?"
,
"警告"
,
MessageBoxButtons
.
YesNo
);
var
rl
=
MessageBox
.
Show
(
string
.
Format
(
"确定要删除:\"{0}\"?"
,
listBox1
.
SelectedItem
)
,
"警告"
,
MessageBoxButtons
.
YesNo
);
if
(
rl
!=
DialogResult
.
Yes
)
if
(
rl
!=
DialogResult
.
Yes
)
return
;
return
;
if
(
listBox1
.
SelectedIndex
==
editindex
)
if
(
listBox1
.
SelectedIndex
==
editindex
)
...
...
Common/CodeResourceControl.cs
0 → 100644
查看文件 @
cde4adc
此文件的差异被折叠,
点击展开。
Common/Common.csproj
查看文件 @
cde4adc
...
@@ -52,6 +52,7 @@
...
@@ -52,6 +52,7 @@
</ItemGroup>
</ItemGroup>
<ItemGroup>
<ItemGroup>
<Compile Include="bean\Bean.cs" />
<Compile Include="bean\Bean.cs" />
<Compile Include="CodeResourceControl.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Setting_Init.cs" />
<Compile Include="Setting_Init.cs" />
<Compile Include="util\ConfigAppSettings.cs" />
<Compile Include="util\ConfigAppSettings.cs" />
...
...
Dingtalk_20210218104106.jpg
0 → 100644
查看文件 @
cde4adc
131.4 KB
编写
预览
支持
Markdown
格式
附加文件
你添加了
0
人
到此讨论。请谨慎行事。
Finish editing this message first!
Cancel
请
注册
或
登录
后发表评论