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
f4b5b84e
Commit
f4b5b84e
authored
Aug 09, 2018
by
wangjunqiang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修复方法窗口问题
parent
b12f3fbe
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
4 deletions
+3
-4
MethodMain.Designer.cs
GcDevicePc/ConfigMethod/MethodMain.Designer.cs
+2
-2
MDIBase.cs
GcDevicePc/MDIBase.cs
+1
-1
auxtool.cs
GcDevicePc/auxtool.cs
+0
-1
No files found.
GcDevicePc/ConfigMethod/MethodMain.Designer.cs
View file @
f4b5b84e
...
@@ -35,7 +35,7 @@
...
@@ -35,7 +35,7 @@
this
.
closebth
=
new
System
.
Windows
.
Forms
.
Button
();
this
.
closebth
=
new
System
.
Windows
.
Forms
.
Button
();
this
.
mixbth
=
new
System
.
Windows
.
Forms
.
Button
();
this
.
mixbth
=
new
System
.
Windows
.
Forms
.
Button
();
this
.
panelmain
=
new
System
.
Windows
.
Forms
.
Panel
();
this
.
panelmain
=
new
System
.
Windows
.
Forms
.
Panel
();
this
.
tabmain
=
new
GcDevicePc
.
ConfigMethod
.
TabContorlEx
(
this
.
components
);
this
.
tabmain
=
new
GcDevicePc
.
ConfigMethod
.
TabContorlEx
();
this
.
tabPage1
=
new
System
.
Windows
.
Forms
.
TabPage
();
this
.
tabPage1
=
new
System
.
Windows
.
Forms
.
TabPage
();
this
.
tabPage2
=
new
System
.
Windows
.
Forms
.
TabPage
();
this
.
tabPage2
=
new
System
.
Windows
.
Forms
.
TabPage
();
this
.
tabPage3
=
new
System
.
Windows
.
Forms
.
TabPage
();
this
.
tabPage3
=
new
System
.
Windows
.
Forms
.
TabPage
();
...
@@ -44,7 +44,7 @@
...
@@ -44,7 +44,7 @@
this
.
tabPage6
=
new
System
.
Windows
.
Forms
.
TabPage
();
this
.
tabPage6
=
new
System
.
Windows
.
Forms
.
TabPage
();
this
.
tabPage7
=
new
System
.
Windows
.
Forms
.
TabPage
();
this
.
tabPage7
=
new
System
.
Windows
.
Forms
.
TabPage
();
this
.
tabPage8
=
new
System
.
Windows
.
Forms
.
TabPage
();
this
.
tabPage8
=
new
System
.
Windows
.
Forms
.
TabPage
();
this
.
methodimages
=
new
System
.
Windows
.
Forms
.
ImageList
(
this
.
components
);
this
.
methodimages
=
new
System
.
Windows
.
Forms
.
ImageList
();
this
.
panelright
=
new
System
.
Windows
.
Forms
.
Panel
();
this
.
panelright
=
new
System
.
Windows
.
Forms
.
Panel
();
this
.
savebth
=
new
System
.
Windows
.
Forms
.
Button
();
this
.
savebth
=
new
System
.
Windows
.
Forms
.
Button
();
this
.
saveasbth
=
new
System
.
Windows
.
Forms
.
Button
();
this
.
saveasbth
=
new
System
.
Windows
.
Forms
.
Button
();
...
...
GcDevicePc/MDIBase.cs
View file @
f4b5b84e
...
@@ -1662,7 +1662,7 @@ namespace GcDevicePc
...
@@ -1662,7 +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
=
tru
e
;
fileDlg
.
RestoreDirectory
=
fals
e
;
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 @
f4b5b84e
...
@@ -173,7 +173,6 @@ namespace GcDevicePc
...
@@ -173,7 +173,6 @@ namespace GcDevicePc
fileDlg
.
RestoreDirectory
=
true
;
fileDlg
.
RestoreDirectory
=
true
;
fileDlg
.
Title
=
"请选择方法文件"
;
fileDlg
.
Title
=
"请选择方法文件"
;
fileDlg
.
Filter
=
"更新程序(*.*)|*.*"
;
fileDlg
.
Filter
=
"更新程序(*.*)|*.*"
;
if
(
fileDlg
.
ShowDialog
()
==
DialogResult
.
OK
)
if
(
fileDlg
.
ShowDialog
()
==
DialogResult
.
OK
)
{
{
file
=
fileDlg
.
FileName
;
file
=
fileDlg
.
FileName
;
...
...
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