Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
H
hemei
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
潘栩锋
hemei
Commits
e6a071a8
Commit
e6a071a8
authored
Oct 30, 2019
by
潘栩锋
🚴
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
测试完成,吹膜扫描. 自动计算膜距离选择角度 完成
parent
dafdd73a
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
507 additions
and
167 deletions
+507
-167
BlowingScanAnaylze.cs
...ick.BlowingScan.UI.Client/PgBlowing/BlowingScanAnaylze.cs
+393
-61
PgBufList.xaml
.../FLY.Thick.BlowingScan.UI.Client/PgBlowing/PgBufList.xaml
+75
-77
PgBufList.xaml.cs
...Y.Thick.BlowingScan.UI.Client/PgBlowing/PgBufList.xaml.cs
+39
-29
No files found.
Project.FLY.Thick.BlowingScan/FLY.Thick.BlowingScan.UI.Client/PgBlowing/BlowingScanAnaylze.cs
View file @
e6a071a8
This diff is collapsed.
Click to expand it.
Project.FLY.Thick.BlowingScan/FLY.Thick.BlowingScan.UI.Client/PgBlowing/PgBufList.xaml
View file @
e6a071a8
This diff is collapsed.
Click to expand it.
Project.FLY.Thick.BlowingScan/FLY.Thick.BlowingScan.UI.Client/PgBlowing/PgBufList.xaml.cs
View file @
e6a071a8
...
@@ -1268,38 +1268,9 @@ namespace FLY.Thick.BlowingScan.UI.Client
...
@@ -1268,38 +1268,9 @@ namespace FLY.Thick.BlowingScan.UI.Client
}
}
}
}
private
void
button_left_Click
(
object
sender
,
RoutedEventArgs
e
)
{
if
(
mAnaylze
.
FilmLength
>
10
)
{
mAnaylze
.
FilmLength
-=
0.1
;
}
}
private
void
button_right_Click
(
object
sender
,
RoutedEventArgs
e
)
{
if
(
mAnaylze
.
FilmLength
<
30
)
{
mAnaylze
.
FilmLength
+=
0.1
;
}
}
private
void
button_collapse_Click
(
object
sender
,
RoutedEventArgs
e
)
{
if
(
mAnaylze
.
RAngle
>
300
)
{
mAnaylze
.
RAngle
-=
1
;
}
}
private
void
button_expand_Click
(
object
sender
,
RoutedEventArgs
e
)
{
if
(
mAnaylze
.
RAngle
<
358
)
{
mAnaylze
.
RAngle
+=
1
;
}
}
private
void
button_pre1_Click
(
object
sender
,
RoutedEventArgs
e
)
private
void
button_pre1_Click
(
object
sender
,
RoutedEventArgs
e
)
...
@@ -1385,6 +1356,45 @@ namespace FLY.Thick.BlowingScan.UI.Client
...
@@ -1385,6 +1356,45 @@ namespace FLY.Thick.BlowingScan.UI.Client
mAnaylze
.
MarkNo2
.
IsFocus
=
true
;
mAnaylze
.
MarkNo2
.
IsFocus
=
true
;
mAnaylze
.
MarkNo1
.
IsFocus
=
false
;
mAnaylze
.
MarkNo1
.
IsFocus
=
false
;
}
}
private
void
button_calRa_Click
(
object
sender
,
RoutedEventArgs
e
)
{
if
(
IsRunning
)
return
;
if
(
mAnaylze
.
IsStep2Ing
)
return
;
//第2步,修改 旋转角度,膜距离 执行 解方程
Thread
t
=
new
Thread
(
mAnaylze
.
StepAutoSearchRAngle
);
t
.
IsBackground
=
true
;
t
.
Start
();
}
private
void
button_calFl_Click
(
object
sender
,
RoutedEventArgs
e
)
{
if
(
IsRunning
)
return
;
if
(
mAnaylze
.
IsStep2Ing
)
return
;
//第2步,修改 旋转角度,膜距离 执行 解方程
Thread
t
=
new
Thread
(
mAnaylze
.
StepAutoSearchFilmLength
);
t
.
IsBackground
=
true
;
t
.
Start
();
}
private
void
button_calAuto_Click
(
object
sender
,
RoutedEventArgs
e
)
{
if
(
IsRunning
)
return
;
if
(
mAnaylze
.
IsStep2Ing
)
return
;
//第2步,修改 旋转角度,膜距离 执行 解方程
Thread
t
=
new
Thread
(
mAnaylze
.
StepAutoSearchParams
);
t
.
IsBackground
=
true
;
t
.
Start
();
}
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment