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
f7e046ab
Commit
f7e046ab
authored
Dec 10, 2018
by
潘栩锋
🚴
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
完成了profile
parent
45ca1529
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
23 additions
and
39 deletions
+23
-39
GM_BlowingFix.cs
...Y.Thick.Blowing/FLY.Thick.Blowing/Server/GM_BlowingFix.cs
+19
-39
TDGage.cs
Project.FLY.Thick.Blowing/FLY.Thick.Blowing/Server/TDGage.cs
+4
-0
No files found.
Project.FLY.Thick.Blowing/FLY.Thick.Blowing/Server/GM_BlowingFix.cs
View file @
f7e046ab
...
...
@@ -745,55 +745,35 @@ namespace FLY.Thick.Blowing.Server
#
endregion
#
region
吹膜定点解方程用
private
bool
solveenable
=
false
;
/// <summary>
/// 使能定点解方程
/// </summary>
public
bool
SolveEnable
{
get
{
return
solveenable
;
}
set
{
if
(
solveenable
!=
value
)
{
solveenable
=
value
;
NotifyPropertyChanged
(
"SolveEnable"
);
}
}
}
private
int
filmWidth
=
1500
;
public
bool
SolveEnable
{
get
;
set
;
}
=
false
;
/// <summary>
/// 膜宽 单位 mm
/// </summary>
public
int
FilmWidth
{
get
{
return
filmWidth
;
}
set
{
if
(
filmWidth
!=
value
)
{
filmWidth
=
value
;
NotifyPropertyChanged
(
"FilmWidth"
);
}
}
}
public
int
FilmWidth
{
get
;
set
;
}
=
1500
;
private
int
filmPosH
=
70
;
/// <summary>
/// 探头所在膜的横向位置 单位 mm
/// </summary>
public
int
FilmPosH
{
get
{
return
filmPosH
;
}
set
{
if
(
filmPosH
!=
value
)
{
filmPosH
=
value
;
NotifyPropertyChanged
(
"FilmPosH"
);
}
}
}
public
int
FilmPosH
{
get
;
set
;
}
=
70
;
/// <summary>
/// 袋测量模式
/// </summary>
public
bool
IsBag
{
get
;
set
;
}
=
false
;
/// <summary>
/// 探头测量位置,袋折叠的宽度 单位 mm
/// </summary>
public
int
BagFold0
{
get
;
set
;
}
=
405
;
/// <summary>
/// 另一端 袋折叠的宽度 单位 mm
/// </summary>
public
int
BagFold1
{
get
;
set
;
}
=
415
;
#
endregion
...
...
Project.FLY.Thick.Blowing/FLY.Thick.Blowing/Server/TDGage.cs
View file @
f7e046ab
...
...
@@ -210,6 +210,10 @@ namespace FLY.Thick.Blowing.Server
Misc
.
BindingOperations
.
SetBinding
(
mProfile
.
Param
,
"SolveEnable"
,
mGMRenZiJiaFix
,
"SolveEnable"
);
Misc
.
BindingOperations
.
SetBinding
(
mProfile
.
Param
,
"FilmWidth"
,
mGMRenZiJiaFix
,
"FilmWidth"
);
Misc
.
BindingOperations
.
SetBinding
(
mProfile
.
Param
,
"FilmPosH"
,
mGMRenZiJiaFix
,
"FilmPosH"
);
Misc
.
BindingOperations
.
SetBinding
(
mProfile
.
Param
,
"IsBag"
,
mGMRenZiJiaFix
,
"IsBag"
);
Misc
.
BindingOperations
.
SetBinding
(
mProfile
.
Param
,
"BagFold0"
,
mGMRenZiJiaFix
,
"BagFold0"
);
Misc
.
BindingOperations
.
SetBinding
(
mProfile
.
Param
,
"BagFold1"
,
mGMRenZiJiaFix
,
"BagFold1"
);
Misc
.
BindingOperations
.
SetBinding
(
mGMRenZiJiaFix
.
mPDetect
,
"FilmVelocity"
,
mDynArea
,
"FilmVelocity"
);
mGMManager
.
AddGM
(
mGMRenZiJiaFix
);
...
...
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