Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
P
PastureGateway
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
steven.sha
PastureGateway
Commits
c60c7f7f
Commit
c60c7f7f
authored
Jun 12, 2019
by
shaxuezheng
Browse files
Options
Browse Files
Download
Plain Diff
Modify Form1.cs
parents
4559c01e
ae9d62a8
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
608 additions
and
1013 deletions
+608
-1013
ModualAlarm.cs
ModbusDemo/Common/ModualAlarm.cs
+10
-11
Totxt.cs
ModbusDemo/Common/Totxt.cs
+23
-31
ModbusComm.cs
ModbusDemo/MessageFormat/ModbusComm.cs
+290
-370
ModualControl.cs
ModbusDemo/MessageFormat/ModualControl.cs
+45
-0
mqttpacke.cs
ModbusDemo/MessageFormat/mqttpacke.cs
+0
-1
ModbusDemo.csproj
ModbusDemo/ModbusDemo.csproj
+21
-21
ModualPoll.cs
ModbusDemo/Modular/ModualPoll.cs
+141
-71
modual.cs
ModbusDemo/Modular/modual.cs
+10
-4
Form1.Designer.cs
ModbusDemo/windows/Form1.Designer.cs
+18
-18
Form1.cs
ModbusDemo/windows/Form1.cs
+50
-486
No files found.
ModbusDemo/Common/ModualAlarm.cs
View file @
c60c7f7f
...
...
@@ -9,14 +9,12 @@ using MQTTnet.Client;
using
Newtonsoft.Json
;
namespace
ModbusDemo.Common
{
public
class
ModualAlarm
public
static
class
ModualAlarm
{
public
const
ushort
usChannelNumber
=
8
;
private
const
string
sAlarmTopic
=
"Witium/WTDS78X/20193261/Alarm"
;
public
Hashtable
hMqtttAlarmMap
=
new
Hashtable
();
public
bool
bErrorHasSend
=
false
;
private
string
sAlarmJson
;
private
string
sAlarmJsonPackage
;
private
const
string
sAlarmTopic
=
"Witium/WTDS78X/66666666/Alarm"
;
public
static
string
sAlarmJson
;
public
static
string
sAlarmJsonPackage
;
//private IMqttClient mqttClient = null;
public
enum
eAlarmCode
:
ushort
{
...
...
@@ -26,9 +24,10 @@ namespace ModbusDemo.Common
ChannelDataRespError
=
4
,
ChannelDataChangeError
=
8
}
public
void
vSetAlarmList
(
ushort
usAddress
,
ushort
[]
usChannel
,
ushort
[]
usChannelAlarmcode
,
bool
bStringIncreas
e
)
public
static
void
vSetAlarmList
(
ushort
usAddress
,
ushort
[]
usChannel
,
ushort
[]
usChannelAlarmcod
e
)
{
ushort
i
=
0
;
Hashtable
hMqtttAlarmMap
=
new
Hashtable
();
hMqtttAlarmMap
.
Add
(
"addr"
,
usAddress
.
ToString
());
string
sAlarm
=
"alm"
;
foreach
(
ushort
usdata
in
usChannelAlarmcode
)
...
...
@@ -37,15 +36,15 @@ namespace ModbusDemo.Common
i
++;
}
hMqtttAlarmMap
.
Add
(
"ts"
,
Form1
.
GetTimeStamp
());
sAlarmJson
+=
JsonConvert
.
SerializeObject
(
hMqtttAlarmMap
);
if
(
bStringIncrease
==
true
)
if
(
sAlarmJson
!=
"["
)
{
sAlarmJson
+=
","
;
}
sAlarmJson
+=
JsonConvert
.
SerializeObject
(
hMqtttAlarmMap
);
}
public
async
Task
vPublishAlarmPackageJson
(
IMqttClient
mqttClient
)
public
static
async
Task
vPublishAlarmPackageJson
(
IMqttClient
mqttClient
)
{
sAlarmJson
=
"["
+
sAlarmJson
+
"]"
;
var
message
=
new
MqttApplicationMessageBuilder
()
.
WithTopic
(
sAlarmTopic
)
.
WithPayload
(
sAlarmJson
)
...
...
ModbusDemo/Common/Totxt.cs
View file @
c60c7f7f
...
...
@@ -13,6 +13,7 @@ namespace ModbusDemo.windows
private
string
logFile
;
private
StreamWriter
writer
;
private
FileStream
fileStream
=
null
;
private
static
object
oTxtLock
=
new
object
();
public
Totxt
(
string
fileName
)
{
logFile
=
fileName
;
...
...
@@ -21,44 +22,35 @@ namespace ModbusDemo.windows
public
void
Log
(
string
info
)
{
try
lock
(
oTxtLock
)
{
System
.
IO
.
FileInfo
fileInfo
=
new
System
.
IO
.
FileInfo
(
logFile
);
if
(!
fileInfo
.
Exists
)
try
{
fileStream
=
fileInfo
.
Create
();
writer
=
new
StreamWriter
(
fileStream
);
System
.
IO
.
FileInfo
fileInfo
=
new
System
.
IO
.
FileInfo
(
logFile
);
if
(!
fileInfo
.
Exists
)
{
fileStream
=
fileInfo
.
Create
();
writer
=
new
StreamWriter
(
fileStream
);
}
else
{
fileStream
=
fileInfo
.
Open
(
FileMode
.
Append
,
FileAccess
.
Write
);
writer
=
new
StreamWriter
(
fileStream
);
}
writer
.
WriteLine
(
DateTime
.
Now
+
": "
+
info
);
}
else
finally
{
fileStream
=
fileInfo
.
Open
(
FileMode
.
Append
,
FileAccess
.
Write
);
writer
=
new
StreamWriter
(
fileStream
);
if
(
writer
!=
null
)
{
writer
.
Close
();
writer
.
Dispose
();
fileStream
.
Close
();
fileStream
.
Dispose
();
}
}
writer
.
WriteLine
(
DateTime
.
Now
+
": "
+
info
);
}
catch
(
Exception
e
)
{
if
(
writer
!=
null
)
{
writer
.
Close
();
writer
.
Dispose
();
fileStream
.
Close
();
fileStream
.
Dispose
();
}
throw
;
}
finally
{
if
(
writer
!=
null
)
{
writer
.
Close
();
writer
.
Dispose
();
fileStream
.
Close
();
fileStream
.
Dispose
();
}
}
}
public
void
CreateDirectory
(
string
infoPath
)
{
DirectoryInfo
directoryInfo
=
Directory
.
GetParent
(
infoPath
);
...
...
ModbusDemo/MessageFormat/ModbusComm.cs
View file @
c60c7f7f
This diff is collapsed.
Click to expand it.
ModbusDemo/MessageFormat/ModualControl.cs
0 → 100644
View file @
c60c7f7f
using
System
;
using
System.Collections.Generic
;
using
System.Linq
;
using
System.Text
;
using
System.Threading.Tasks
;
using
MQTTnet
;
using
MQTTnet.Client
;
using
Newtonsoft.Json
;
namespace
ModbusDemo.MessageFormat
{
public
class
ModualControl
{
public
class
Op
{
public
UInt64
duration
{
get
;
set
;
}
public
UInt64
startTime
{
get
;
set
;}
public
int
d0
{
get
;
set
;
}
public
int
d1
{
get
;
set
;
}
public
int
d2
{
get
;
set
;
}
public
int
d3
{
get
;
set
;
}
public
int
d4
{
get
;
set
;
}
public
int
d5
{
get
;
set
;
}
public
int
d6
{
get
;
set
;
}
public
int
d7
{
get
;
set
;
}
public
UInt64
ts
{
get
;
set
;
}
}
public
class
SsItem
{
public
string
addr
{
get
;
set
;
}
public
Op
op
{
get
;
set
;
}
}
public
class
MqttRoot
{
public
string
taskId
{
get
;
set
;
}
public
List
<
SsItem
>
ss
{
get
;
set
;
}
}
public
static
List
<
MqttRoot
>
liModuualControl
=
new
List
<
MqttRoot
>();
public
static
void
vGetaWay_Receive_Control
(
string
sDataString
)
{
MqttRoot
cControl
=
JsonConvert
.
DeserializeObject
<
MqttRoot
>(
sDataString
);
}
}
}
ModbusDemo/MessageFormat/mqttpacke.cs
View file @
c60c7f7f
...
...
@@ -132,7 +132,6 @@ namespace ModbusDemo
}
public
class
Ctrl
{
public
string
taskId
;
public
void
settaskId
(
string
taskId
)
{
...
...
ModbusDemo/ModbusDemo.csproj
View file @
c60c7f7f
...
...
@@ -2,6 +2,20 @@
<Project
ToolsVersion=
"12.0"
DefaultTargets=
"Build"
xmlns=
"http://schemas.microsoft.com/developer/msbuild/2003"
>
<PropertyGroup>
<SSDTUnitTestPath
Condition=
"'$(SSDTUnitTestPath)' == ''"
>
$(VsInstallRoot)\Common7\IDE\Extensions\Microsoft\SQLDB
</SSDTUnitTestPath>
<PublishUrl>
publish\
</PublishUrl>
<Install>
true
</Install>
<InstallFrom>
Disk
</InstallFrom>
<UpdateEnabled>
false
</UpdateEnabled>
<UpdateMode>
Foreground
</UpdateMode>
<UpdateInterval>
7
</UpdateInterval>
<UpdateIntervalUnits>
Days
</UpdateIntervalUnits>
<UpdatePeriodically>
false
</UpdatePeriodically>
<UpdateRequired>
false
</UpdateRequired>
<MapFileExtensions>
true
</MapFileExtensions>
<ApplicationRevision>
0
</ApplicationRevision>
<ApplicationVersion>
1.0.0.%2a
</ApplicationVersion>
<UseApplicationTrust>
false
</UseApplicationTrust>
<BootstrapperEnabled>
true
</BootstrapperEnabled>
</PropertyGroup>
<PropertyGroup>
<SSDTPath
Condition=
"'$(SSDTPath)' == ''"
>
$(VsInstallRoot)\Common7\IDE\Extensions\Microsoft\SQLDB\DAC\130
</SSDTPath>
...
...
@@ -22,20 +36,6 @@
<FileAlignment>
512
</FileAlignment>
<IsWebBootstrapper>
false
</IsWebBootstrapper>
<TargetFrameworkProfile
/>
<PublishUrl>
publish\
</PublishUrl>
<Install>
true
</Install>
<InstallFrom>
Disk
</InstallFrom>
<UpdateEnabled>
false
</UpdateEnabled>
<UpdateMode>
Foreground
</UpdateMode>
<UpdateInterval>
7
</UpdateInterval>
<UpdateIntervalUnits>
Days
</UpdateIntervalUnits>
<UpdatePeriodically>
false
</UpdatePeriodically>
<UpdateRequired>
false
</UpdateRequired>
<MapFileExtensions>
true
</MapFileExtensions>
<ApplicationRevision>
0
</ApplicationRevision>
<ApplicationVersion>
1.0.0.%2a
</ApplicationVersion>
<UseApplicationTrust>
false
</UseApplicationTrust>
<BootstrapperEnabled>
true
</BootstrapperEnabled>
</PropertyGroup>
<PropertyGroup
Condition=
" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "
>
<PlatformTarget>
x86
</PlatformTarget>
...
...
@@ -43,7 +43,7 @@
<DebugType>
full
</DebugType>
<Optimize>
false
</Optimize>
<OutputPath>
bin\Debug\
</OutputPath>
<DefineConstants>
DEBUG;TRACE
</DefineConstants>
<DefineConstants>
TRACE;DEBUG;DEBUG_TEST
</DefineConstants>
<ErrorReport>
prompt
</ErrorReport>
<WarningLevel>
4
</WarningLevel>
<Prefer32Bit>
false
</Prefer32Bit>
...
...
@@ -78,7 +78,6 @@
<HintPath>
..\packages\NModbus4.2.1.0\lib\net40\NModbus4.dll
</HintPath>
</Reference>
<Reference
Include=
"System"
/>
<Reference
Include=
"System.Core"
/>
<Reference
Include=
"System.Xml.Linq"
/>
<Reference
Include=
"System.Data.DataSetExtensions"
/>
<Reference
Include=
"Microsoft.CSharp"
/>
...
...
@@ -94,6 +93,7 @@
<Compile
Include=
"application\Pond.cs"
/>
<Compile
Include=
"application\UsThread.cs"
/>
<Compile
Include=
"Common\ModualAlarm.cs"
/>
<Compile
Include=
"MessageFormat\ModualControl.cs"
/>
<Compile
Include=
"MessageFormat\ModbusComm.cs"
/>
<Compile
Include=
"Modular\414P.cs"
/>
<Compile
Include=
"Modular\478C.cs"
/>
...
...
@@ -167,11 +167,11 @@
<ItemGroup
/>
<Import
Project=
"$(MSBuildToolsPath)\Microsoft.CSharp.targets"
/>
<PropertyGroup>
<
SsdtUnitTestVersion>
3.1
</SsdtUnitTestVersion
>
</PropertyGroup
>
<Import
Project=
"$(SQLDBExtensionsRefPath)\Microsoft.Data.Tools.Schema.Sql.UnitTesting.targets"
Condition=
"$(VisualStudioVersion) != '15.0' And '$(SQLDBExtensionsRefPath)' != ''"
/
>
<Import
Project=
"$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)\SSDT\Microsoft.Data.Tools.Schema.Sql.UnitTesting.targets"
Condition=
"$(VisualStudioVersion) != '15.0' And '$(SQLDBExtensionsRefPath)' == ''"
/
>
<PropertyGroup
>
<
!-- <SsdtUnitTestVersion>3.1</SsdtUnitTestVersion> --
>
<!-- </PropertyGroup> --
>
<!-- <Import Project="$(SQLDBExtensionsRefPath)\Microsoft.Data.Tools.Schema.Sql.UnitTesting.targets" Condition="$(VisualStudioVersion) != '15.0' And '$(SQLDBExtensionsRefPath)' != ''" /> --
>
<!-- <Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)\SSDT\Microsoft.Data.Tools.Schema.Sql.UnitTesting.targets" Condition="$(VisualStudioVersion) != '15.0' And '$(SQLDBExtensionsRefPath)' == ''" /> --
>
<!-- <PropertyGroup> --
>
<SsdtUnitTestVersion>
3.1
</SsdtUnitTestVersion>
</PropertyGroup>
<Import
Project=
"$(SQLDBExtensionsRefPath)\Microsoft.Data.Tools.Schema.Sql.UnitTesting.targets"
Condition=
"$(VisualStudioVersion) != '15.0' And '$(SQLDBExtensionsRefPath)' != ''"
/>
...
...
ModbusDemo/Modular/ModualPoll.cs
View file @
c60c7f7f
This diff is collapsed.
Click to expand it.
ModbusDemo/Modular/modual.cs
View file @
c60c7f7f
...
...
@@ -16,21 +16,27 @@ namespace ModbusDemo.Modular
public
double
[]
dNowConvertData
;
public
double
[]
dBeforeConvertData
;
}
public
enum
eX14pSensorChannelType
:
byte
{
Normal
=
0
,
Null
,
}
public
struct
psxModualAlarm
{
public
bool
bDataNotFirstIncreaseOrDecrease
;
public
ushort
[]
usNowAlarmCode
;
public
ushort
[]
usBeforeAlarmCode
;
}
public
class
pcx14P
{
public
byte
[]
byModbusID
;
public
psx14pData
[]
sX14pDataStruct
=
new
psx14pData
[
ModualPoll
.
byX14pNumber
];
public
psxModualAlarm
[]
sX14PAlarmStruct
=
new
psxModualAlarm
[
ModualPoll
.
byX14pNumber
];
public
pcx14P
(
byte
[]
InitIDlist
)
public
eX14pSensorChannelType
[,]
eChannelType
;
public
pcx14P
(
byte
[]
InitIDlist
,
eX14pSensorChannelType
[,]
ChannelType
)
{
this
.
byModbusID
=
InitIDlist
;
this
.
byModbusID
=
InitIDlist
;
this
.
eChannelType
=
ChannelType
;
for
(
byte
i
=
0
;
i
<
ModualPoll
.
byX14pNumber
;
i
++)
{
this
.
sX14pDataStruct
[
i
].
dBeforeConvertData
=
new
double
[
ModualPoll
.
byX14pReadDataNumber
];
...
...
@@ -49,7 +55,7 @@ namespace ModbusDemo.Modular
Mike_5
,
Mike_6
,
Mike_7
,
Level
,
NormalCurrent
,
}
public
struct
psX18xData
...
...
ModbusDemo/windows/Form1.Designer.cs
View file @
c60c7f7f
...
...
@@ -71,7 +71,7 @@
"1"
,
"2"
});
this
.
cmbStopBit
.
Location
=
new
System
.
Drawing
.
Point
(
461
,
98
);
this
.
cmbStopBit
.
Margin
=
new
System
.
Windows
.
Forms
.
Padding
(
4
);
this
.
cmbStopBit
.
Margin
=
new
System
.
Windows
.
Forms
.
Padding
(
4
,
4
,
4
,
4
);
this
.
cmbStopBit
.
Name
=
"cmbStopBit"
;
this
.
cmbStopBit
.
Size
=
new
System
.
Drawing
.
Size
(
73
,
24
);
this
.
cmbStopBit
.
TabIndex
=
70
;
...
...
@@ -81,7 +81,7 @@
this
.
btCloseCOM
.
Enabled
=
false
;
this
.
btCloseCOM
.
Font
=
new
System
.
Drawing
.
Font
(
"Arial"
,
8F
);
this
.
btCloseCOM
.
Location
=
new
System
.
Drawing
.
Point
(
432
,
130
);
this
.
btCloseCOM
.
Margin
=
new
System
.
Windows
.
Forms
.
Padding
(
4
);
this
.
btCloseCOM
.
Margin
=
new
System
.
Windows
.
Forms
.
Padding
(
4
,
4
,
4
,
4
);
this
.
btCloseCOM
.
Name
=
"btCloseCOM"
;
this
.
btCloseCOM
.
Size
=
new
System
.
Drawing
.
Size
(
104
,
29
);
this
.
btCloseCOM
.
TabIndex
=
72
;
...
...
@@ -96,7 +96,7 @@
"1-Odd Parity"
,
"2-Even Parity"
});
this
.
cmbParity
.
Location
=
new
System
.
Drawing
.
Point
(
311
,
98
);
this
.
cmbParity
.
Margin
=
new
System
.
Windows
.
Forms
.
Padding
(
4
);
this
.
cmbParity
.
Margin
=
new
System
.
Windows
.
Forms
.
Padding
(
4
,
4
,
4
,
4
);
this
.
cmbParity
.
Name
=
"cmbParity"
;
this
.
cmbParity
.
Size
=
new
System
.
Drawing
.
Size
(
132
,
24
);
this
.
cmbParity
.
TabIndex
=
69
;
...
...
@@ -105,7 +105,7 @@
//
this
.
btOpenCOM
.
Font
=
new
System
.
Drawing
.
Font
(
"Arial"
,
8F
);
this
.
btOpenCOM
.
Location
=
new
System
.
Drawing
.
Point
(
311
,
130
);
this
.
btOpenCOM
.
Margin
=
new
System
.
Windows
.
Forms
.
Padding
(
4
);
this
.
btOpenCOM
.
Margin
=
new
System
.
Windows
.
Forms
.
Padding
(
4
,
4
,
4
,
4
);
this
.
btOpenCOM
.
Name
=
"btOpenCOM"
;
this
.
btOpenCOM
.
Size
=
new
System
.
Drawing
.
Size
(
104
,
29
);
this
.
btOpenCOM
.
TabIndex
=
71
;
...
...
@@ -119,7 +119,7 @@
"7"
,
"8"
});
this
.
cmbDataBit
.
Location
=
new
System
.
Drawing
.
Point
(
236
,
98
);
this
.
cmbDataBit
.
Margin
=
new
System
.
Windows
.
Forms
.
Padding
(
4
);
this
.
cmbDataBit
.
Margin
=
new
System
.
Windows
.
Forms
.
Padding
(
4
,
4
,
4
,
4
);
this
.
cmbDataBit
.
Name
=
"cmbDataBit"
;
this
.
cmbDataBit
.
Size
=
new
System
.
Drawing
.
Size
(
63
,
24
);
this
.
cmbDataBit
.
TabIndex
=
68
;
...
...
@@ -181,7 +181,7 @@
"57600"
,
"115200"
});
this
.
cmbBaud
.
Location
=
new
System
.
Drawing
.
Point
(
123
,
98
);
this
.
cmbBaud
.
Margin
=
new
System
.
Windows
.
Forms
.
Padding
(
4
);
this
.
cmbBaud
.
Margin
=
new
System
.
Windows
.
Forms
.
Padding
(
4
,
4
,
4
,
4
);
this
.
cmbBaud
.
Name
=
"cmbBaud"
;
this
.
cmbBaud
.
Size
=
new
System
.
Drawing
.
Size
(
100
,
24
);
this
.
cmbBaud
.
TabIndex
=
67
;
...
...
@@ -201,7 +201,7 @@
//
this
.
cmbPort
.
Font
=
new
System
.
Drawing
.
Font
(
"Arial"
,
8F
);
this
.
cmbPort
.
Location
=
new
System
.
Drawing
.
Point
(
16
,
98
);
this
.
cmbPort
.
Margin
=
new
System
.
Windows
.
Forms
.
Padding
(
4
);
this
.
cmbPort
.
Margin
=
new
System
.
Windows
.
Forms
.
Padding
(
4
,
4
,
4
,
4
);
this
.
cmbPort
.
Name
=
"cmbPort"
;
this
.
cmbPort
.
Size
=
new
System
.
Drawing
.
Size
(
99
,
24
);
this
.
cmbPort
.
TabIndex
=
65
;
...
...
@@ -225,7 +225,7 @@
this
.
txtReceiveMessage
.
Multiline
=
true
;
this
.
txtReceiveMessage
.
Name
=
"txtReceiveMessage"
;
this
.
txtReceiveMessage
.
ScrollBars
=
System
.
Windows
.
Forms
.
ScrollBars
.
Both
;
this
.
txtReceiveMessage
.
Size
=
new
System
.
Drawing
.
Size
(
6
00
,
64
0
);
this
.
txtReceiveMessage
.
Size
=
new
System
.
Drawing
.
Size
(
6
77
,
66
0
);
this
.
txtReceiveMessage
.
TabIndex
=
77
;
this
.
txtReceiveMessage
.
TextChanged
+=
new
System
.
EventHandler
(
this
.
txtReceiveMessage_TextChanged
);
//
...
...
@@ -238,9 +238,9 @@
this
.
updateops
.
Controls
.
Add
(
this
.
UpdateBar
);
this
.
updateops
.
Controls
.
Add
(
this
.
UpdateBtn
);
this
.
updateops
.
Location
=
new
System
.
Drawing
.
Point
(
20
,
218
);
this
.
updateops
.
Margin
=
new
System
.
Windows
.
Forms
.
Padding
(
4
);
this
.
updateops
.
Margin
=
new
System
.
Windows
.
Forms
.
Padding
(
4
,
4
,
4
,
4
);
this
.
updateops
.
Name
=
"updateops"
;
this
.
updateops
.
Padding
=
new
System
.
Windows
.
Forms
.
Padding
(
4
);
this
.
updateops
.
Padding
=
new
System
.
Windows
.
Forms
.
Padding
(
4
,
4
,
4
,
4
);
this
.
updateops
.
Size
=
new
System
.
Drawing
.
Size
(
516
,
139
);
this
.
updateops
.
TabIndex
=
92
;
this
.
updateops
.
TabStop
=
false
;
...
...
@@ -268,7 +268,7 @@
// choosebth
//
this
.
choosebth
.
Location
=
new
System
.
Drawing
.
Point
(
243
,
81
);
this
.
choosebth
.
Margin
=
new
System
.
Windows
.
Forms
.
Padding
(
4
);
this
.
choosebth
.
Margin
=
new
System
.
Windows
.
Forms
.
Padding
(
4
,
4
,
4
,
4
);
this
.
choosebth
.
Name
=
"choosebth"
;
this
.
choosebth
.
Size
=
new
System
.
Drawing
.
Size
(
100
,
29
);
this
.
choosebth
.
TabIndex
=
3
;
...
...
@@ -289,7 +289,7 @@
// UpdateBar
//
this
.
UpdateBar
.
Location
=
new
System
.
Drawing
.
Point
(
77
,
25
);
this
.
UpdateBar
.
Margin
=
new
System
.
Windows
.
Forms
.
Padding
(
4
);
this
.
UpdateBar
.
Margin
=
new
System
.
Windows
.
Forms
.
Padding
(
4
,
4
,
4
,
4
);
this
.
UpdateBar
.
Name
=
"UpdateBar"
;
this
.
UpdateBar
.
Size
=
new
System
.
Drawing
.
Size
(
373
,
29
);
this
.
UpdateBar
.
TabIndex
=
1
;
...
...
@@ -297,7 +297,7 @@
// UpdateBtn
//
this
.
UpdateBtn
.
Location
=
new
System
.
Drawing
.
Point
(
351
,
81
);
this
.
UpdateBtn
.
Margin
=
new
System
.
Windows
.
Forms
.
Padding
(
4
);
this
.
UpdateBtn
.
Margin
=
new
System
.
Windows
.
Forms
.
Padding
(
4
,
4
,
4
,
4
);
this
.
UpdateBtn
.
Name
=
"UpdateBtn"
;
this
.
UpdateBtn
.
Size
=
new
System
.
Drawing
.
Size
(
100
,
29
);
this
.
UpdateBtn
.
TabIndex
=
0
;
...
...
@@ -325,7 +325,7 @@
//
this
.
label2
.
AutoSize
=
true
;
this
.
label2
.
Font
=
new
System
.
Drawing
.
Font
(
"宋体"
,
12F
,
System
.
Drawing
.
FontStyle
.
Regular
,
System
.
Drawing
.
GraphicsUnit
.
Point
,
((
byte
)(
134
)));
this
.
label2
.
Location
=
new
System
.
Drawing
.
Point
(
44
,
48
7
);
this
.
label2
.
Location
=
new
System
.
Drawing
.
Point
(
44
,
48
8
);
this
.
label2
.
Margin
=
new
System
.
Windows
.
Forms
.
Padding
(
4
,
0
,
4
,
0
);
this
.
label2
.
Name
=
"label2"
;
this
.
label2
.
Size
=
new
System
.
Drawing
.
Size
(
69
,
20
);
...
...
@@ -355,7 +355,7 @@
// button2
//
this
.
button2
.
Location
=
new
System
.
Drawing
.
Point
(
371
,
476
);
this
.
button2
.
Margin
=
new
System
.
Windows
.
Forms
.
Padding
(
4
);
this
.
button2
.
Margin
=
new
System
.
Windows
.
Forms
.
Padding
(
4
,
4
,
4
,
4
);
this
.
button2
.
Name
=
"button2"
;
this
.
button2
.
Size
=
new
System
.
Drawing
.
Size
(
100
,
29
);
this
.
button2
.
TabIndex
=
97
;
...
...
@@ -366,7 +366,7 @@
// SubscribeBut
//
this
.
SubscribeBut
.
Location
=
new
System
.
Drawing
.
Point
(
371
,
432
);
this
.
SubscribeBut
.
Margin
=
new
System
.
Windows
.
Forms
.
Padding
(
4
);
this
.
SubscribeBut
.
Margin
=
new
System
.
Windows
.
Forms
.
Padding
(
4
,
4
,
4
,
4
);
this
.
SubscribeBut
.
Name
=
"SubscribeBut"
;
this
.
SubscribeBut
.
Size
=
new
System
.
Drawing
.
Size
(
100
,
29
);
this
.
SubscribeBut
.
TabIndex
=
98
;
...
...
@@ -396,7 +396,7 @@
//
this
.
AutoScaleDimensions
=
new
System
.
Drawing
.
SizeF
(
8F
,
15F
);
this
.
AutoScaleMode
=
System
.
Windows
.
Forms
.
AutoScaleMode
.
Font
;
this
.
ClientSize
=
new
System
.
Drawing
.
Size
(
1
184
,
672
);
this
.
ClientSize
=
new
System
.
Drawing
.
Size
(
1
256
,
689
);
this
.
Controls
.
Add
(
this
.
label6
);
this
.
Controls
.
Add
(
this
.
label5
);
this
.
Controls
.
Add
(
this
.
SubscribeBut
);
...
...
@@ -421,7 +421,7 @@
this
.
Controls
.
Add
(
this
.
cmbPort
);
this
.
Controls
.
Add
(
this
.
label7
);
this
.
Icon
=
((
System
.
Drawing
.
Icon
)(
resources
.
GetObject
(
"$this.Icon"
)));
this
.
Margin
=
new
System
.
Windows
.
Forms
.
Padding
(
4
);
this
.
Margin
=
new
System
.
Windows
.
Forms
.
Padding
(
4
,
4
,
4
,
4
);
this
.
Name
=
"Form1"
;
this
.
Text
=
"牧场项目"
;
this
.
FormClosed
+=
new
System
.
Windows
.
Forms
.
FormClosedEventHandler
(
this
.
Form1_FormClosed
);
...
...
ModbusDemo/windows/Form1.cs
View file @
c60c7f7f
This diff is collapsed.
Click to expand it.
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