Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
G
GC_Branch
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
周磊
GC_Branch
Commits
d39c641c
Commit
d39c641c
authored
Aug 09, 2018
by
wangwanxh@sina.com
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'wang_master' of
https://gitee.com/wangwanxh/Vocs
into wang_master
parents
b0c66c26
b6ab6dae
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5004 additions
and
4846 deletions
+5004
-4846
MethodMain.Designer.cs
GcDevicePc/ConfigMethod/MethodMain.Designer.cs
+36
-52
MethodMain.resx
GcDevicePc/ConfigMethod/MethodMain.resx
+4961
-4794
MDIBase.cs
GcDevicePc/MDIBase.cs
+6
-0
auxtool.cs
GcDevicePc/auxtool.cs
+1
-0
No files found.
GcDevicePc/ConfigMethod/MethodMain.Designer.cs
View file @
d39c641c
This diff is collapsed.
Click to expand it.
GcDevicePc/ConfigMethod/MethodMain.resx
View file @
d39c641c
This diff is collapsed.
Click to expand it.
GcDevicePc/MDIBase.cs
View file @
d39c641c
...
@@ -727,6 +727,10 @@ namespace GcDevicePc
...
@@ -727,6 +727,10 @@ namespace GcDevicePc
globaldata
.
show_MethodName
=
tmpname
;
globaldata
.
show_MethodName
=
tmpname
;
SetMainFormMethodName
(
tmpname
);
SetMainFormMethodName
(
tmpname
);
globaldata
.
m_pcbuffer
.
gcpcinfo
.
pcfileinfo
.
cur_MethodName
=
Path
.
Combine
(
globaldata
.
m_pcbuffer
.
gcpcinfo
.
pcfolderinfo
.
MethodFolder
,
tmpname
.
ToString
());
globaldata
.
m_pcbuffer
.
gcpcinfo
.
pcfileinfo
.
cur_MethodName
=
Path
.
Combine
(
globaldata
.
m_pcbuffer
.
gcpcinfo
.
pcfolderinfo
.
MethodFolder
,
tmpname
.
ToString
());
if
(
globaldata
.
m_pcbuffer
.
gcpcinfo
.
pcworkinfo
.
RunType
==
2
)
globaldata
.
m_pcbuffer
.
gcpcinfo
.
pcfileinfo
.
cur_BATMethodName
=
Path
.
Combine
(
globaldata
.
m_pcbuffer
.
gcpcinfo
.
pcfolderinfo
.
MethodFolder
,
tmpname
.
ToString
());
globaldata
.
m_profileMethod
.
SetMethodFullName
(
globaldata
.
m_pcbuffer
.
gcpcinfo
.
pcfileinfo
.
cur_MethodName
);
globaldata
.
m_profileMethod
.
SetMethodFullName
(
globaldata
.
m_pcbuffer
.
gcpcinfo
.
pcfileinfo
.
cur_MethodName
);
globaldata
.
m_profileMethod
.
GetDevInjPortAllPara
();
globaldata
.
m_profileMethod
.
GetDevInjPortAllPara
();
globaldata
.
m_profileMethod
.
GetSampleAllPara
(
"前进样器"
);
globaldata
.
m_profileMethod
.
GetSampleAllPara
(
"前进样器"
);
...
@@ -1658,6 +1662,7 @@ namespace GcDevicePc
...
@@ -1658,6 +1662,7 @@ namespace GcDevicePc
OpenFileDialog
fileDlg
=
new
OpenFileDialog
();
OpenFileDialog
fileDlg
=
new
OpenFileDialog
();
fileDlg
.
Multiselect
=
false
;
fileDlg
.
Multiselect
=
false
;
fileDlg
.
InitialDirectory
=
globaldata
.
m_pcbuffer
.
gcpcinfo
.
pcfolderinfo
.
MethodFolder
;
fileDlg
.
InitialDirectory
=
globaldata
.
m_pcbuffer
.
gcpcinfo
.
pcfolderinfo
.
MethodFolder
;
fileDlg
.
RestoreDirectory
=
true
;
fileDlg
.
Title
=
"请选择方法文件"
;
fileDlg
.
Title
=
"请选择方法文件"
;
fileDlg
.
Filter
=
"配置文件(*.ini)|*.ini"
;
fileDlg
.
Filter
=
"配置文件(*.ini)|*.ini"
;
if
(
fileDlg
.
ShowDialog
()
==
DialogResult
.
OK
)
if
(
fileDlg
.
ShowDialog
()
==
DialogResult
.
OK
)
...
@@ -1709,6 +1714,7 @@ namespace GcDevicePc
...
@@ -1709,6 +1714,7 @@ namespace GcDevicePc
OpenFileDialog
fileDlg
=
new
OpenFileDialog
();
OpenFileDialog
fileDlg
=
new
OpenFileDialog
();
fileDlg
.
Multiselect
=
false
;
fileDlg
.
Multiselect
=
false
;
fileDlg
.
InitialDirectory
=
globaldata
.
m_pcbuffer
.
gcpcinfo
.
pcfolderinfo
.
MethodFolder
;
fileDlg
.
InitialDirectory
=
globaldata
.
m_pcbuffer
.
gcpcinfo
.
pcfolderinfo
.
MethodFolder
;
fileDlg
.
RestoreDirectory
=
true
;
fileDlg
.
Title
=
"请选择方法文件"
;
fileDlg
.
Title
=
"请选择方法文件"
;
fileDlg
.
Filter
=
"配置文件(*.ini)|*.ini"
;
fileDlg
.
Filter
=
"配置文件(*.ini)|*.ini"
;
if
(
fileDlg
.
ShowDialog
()
==
DialogResult
.
OK
)
if
(
fileDlg
.
ShowDialog
()
==
DialogResult
.
OK
)
...
...
GcDevicePc/auxtool.cs
View file @
d39c641c
...
@@ -170,6 +170,7 @@ namespace GcDevicePc
...
@@ -170,6 +170,7 @@ namespace GcDevicePc
OpenFileDialog
fileDlg
=
new
OpenFileDialog
();
OpenFileDialog
fileDlg
=
new
OpenFileDialog
();
fileDlg
.
Multiselect
=
false
;
fileDlg
.
Multiselect
=
false
;
fileDlg
.
InitialDirectory
=
globaldata
.
m_pcbuffer
.
gcpcinfo
.
pcfolderinfo
.
TmpFolder
;
fileDlg
.
InitialDirectory
=
globaldata
.
m_pcbuffer
.
gcpcinfo
.
pcfolderinfo
.
TmpFolder
;
fileDlg
.
RestoreDirectory
=
true
;
fileDlg
.
Title
=
"请选择方法文件"
;
fileDlg
.
Title
=
"请选择方法文件"
;
fileDlg
.
Filter
=
"更新程序(*.*)|*.*"
;
fileDlg
.
Filter
=
"更新程序(*.*)|*.*"
;
...
...
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