Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
T
Thick-Common
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
潘栩锋
Thick-Common
Commits
a51ae96a
Commit
a51ae96a
authored
Jul 16, 2021
by
潘栩锋
🚴
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修复 当AD盒 Loading 时,会把 backup 的参数 设置到AD盒。 我不想这样。
parent
6644d9a9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
1 deletion
+15
-1
FlyAD7.cs
Project.FLY.FlyADBase/FlyADBase/FlyAD7.cs
+15
-1
No files found.
Project.FLY.FlyADBase/FlyADBase/FlyAD7.cs
View file @
a51ae96a
...
...
@@ -84,7 +84,7 @@ namespace FlyADBase
this
.
PropertyChanged
+=
new
PropertyChangedEventHandler
(
FlyAD7_PropertyChanged
);
PollModule
.
Current
.
Poll_Config
(
PollModule
.
POLL_CONFIG
.
ADD
,
new
PollModule
.
PollHandler
(
OnPoll
));
//每隔一个小时
//每隔一个小时
,改变剩下时间
PollModule
.
Current
.
Poll_Config
(
PollModule
.
POLL_CONFIG
.
ADD
,
()
=>
{
if
(!
IsConnected
)
...
...
@@ -1817,19 +1817,33 @@ namespace FlyADBase
this
.
jsonDbPath
=
jsonDbPath
;
this
.
PropertyChanged
-=
FlyAD7_PropertyChanged2
;
//不需要设置到 AD盒
bShieldSetValueEx
=
true
;
bool
ret
=
FlyAD7JsonDb
.
Load
(
jsonDbPath
,
this
);
//还没连到 AD盒前, 有比较正常的 默认值,不需要设置到AD盒
PosOfGrid
=
Backup_PosOfGrid
;
MotorType
=
Backup_MotorType
;
Ratio01
=
Backup_Ratio01
;
Ratio02
=
Backup_Ratio02
;
PosOffset
=
Backup_PosOffset
;
JogVelocity
=
Backup_JogVelocity
;
bShieldSetValueEx
=
false
;
this
.
PropertyChanged
+=
FlyAD7_PropertyChanged2
;
return
ret
;
}
/// <summary>
/// 属性改变,自动保存
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private
void
FlyAD7_PropertyChanged2
(
object
sender
,
PropertyChangedEventArgs
e
)
{
if
(
propertyName_save
.
Contains
(
e
.
PropertyName
))
...
...
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