1 Star 0 Fork 725

五六色/dgiot_dtu

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
MainForm.Designer.cs 78.98 KB
一键复制 编辑 原始数据 按行查看 历史
lsxredrain 提交于 2021-12-03 12:55 . add opcda getitems
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491
namespace Dgiot_dtu
{
partial class MainForm
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
this.buttonStartStop = new System.Windows.Forms.Button();
this.textBoxLog = new System.Windows.Forms.TextBox();
this.linkLabel1 = new System.Windows.Forms.LinkLabel();
this.checkBoxReconnect = new System.Windows.Forms.CheckBox();
this.checkBoxDisplayHex = new System.Windows.Forms.CheckBox();
this.buttonClear = new System.Windows.Forms.Button();
this.groupBoxSerialPort = new System.Windows.Forms.GroupBox();
this.comboBoxParity = new System.Windows.Forms.ComboBox();
this.label13 = new System.Windows.Forms.Label();
this.label5 = new System.Windows.Forms.Label();
this.label4 = new System.Windows.Forms.Label();
this.label1 = new System.Windows.Forms.Label();
this.comboBoxStopBits = new System.Windows.Forms.ComboBox();
this.comboBoxDataBits = new System.Windows.Forms.ComboBox();
this.comboBoxBaudRate = new System.Windows.Forms.ComboBox();
this.labelSerialPort = new System.Windows.Forms.Label();
this.comboBoxSerialPort = new System.Windows.Forms.ComboBox();
this.textBoxTcpServerPort = new System.Windows.Forms.TextBox();
this.labelTargetPort = new System.Windows.Forms.Label();
this.textBoxMqttPubTopic = new System.Windows.Forms.TextBox();
this.label12 = new System.Windows.Forms.Label();
this.textBoxMqttSubTopic = new System.Windows.Forms.TextBox();
this.label11 = new System.Windows.Forms.Label();
this.textBoxMqttPassword = new System.Windows.Forms.TextBox();
this.label10 = new System.Windows.Forms.Label();
this.textBoxMqttUserName = new System.Windows.Forms.TextBox();
this.label9 = new System.Windows.Forms.Label();
this.label3 = new System.Windows.Forms.Label();
this.linkLabel2 = new System.Windows.Forms.LinkLabel();
this.textToPayload = new System.Windows.Forms.TextBox();
this.textBoxTcpClientLogin = new System.Windows.Forms.TextBox();
this.textBoxTcpClientPort = new System.Windows.Forms.TextBox();
this.textBoxMqttClientId = new System.Windows.Forms.TextBox();
this.textBoxMqttPort = new System.Windows.Forms.TextBox();
this.textBoxUDPClientLogin = new System.Windows.Forms.TextBox();
this.textBoxUDPCLientPort = new System.Windows.Forms.TextBox();
this.sendBridge = new System.Windows.Forms.Button();
this.groupBox2 = new System.Windows.Forms.GroupBox();
this.label16 = new System.Windows.Forms.Label();
this.label17 = new System.Windows.Forms.Label();
this.textBoxTcpClientServer = new System.Windows.Forms.TextBox();
this.label18 = new System.Windows.Forms.Label();
this.checkBoxTcpBridge = new System.Windows.Forms.CheckBox();
this.groupBox3 = new System.Windows.Forms.GroupBox();
this.comboBoxDevAddr = new System.Windows.Forms.ComboBox();
this.label30 = new System.Windows.Forms.Label();
this.label29 = new System.Windows.Forms.Label();
this.comboBoxCmdProdxy = new System.Windows.Forms.ComboBox();
this.checkBoxMqttBridge = new System.Windows.Forms.CheckBox();
this.textBoxMqttServerPort = new System.Windows.Forms.TextBox();
this.label27 = new System.Windows.Forms.Label();
this.label20 = new System.Windows.Forms.Label();
this.label21 = new System.Windows.Forms.Label();
this.textBoxMqttSever = new System.Windows.Forms.TextBox();
this.label22 = new System.Windows.Forms.Label();
this.groupBox4 = new System.Windows.Forms.GroupBox();
this.label36 = new System.Windows.Forms.Label();
this.label35 = new System.Windows.Forms.Label();
this.comboBoxOpcGroup = new System.Windows.Forms.ComboBox();
this.comboBoxOpcHost = new System.Windows.Forms.ComboBox();
this.comboBoxOpcServer = new System.Windows.Forms.ComboBox();
this.label31 = new System.Windows.Forms.Label();
this.label25 = new System.Windows.Forms.Label();
this.textBoxOpcIp = new System.Windows.Forms.TextBox();
this.groupBox5 = new System.Windows.Forms.GroupBox();
this.textBoxOPCUATopic = new System.Windows.Forms.TextBox();
this.label19 = new System.Windows.Forms.Label();
this.groupBox6 = new System.Windows.Forms.GroupBox();
this.textBoxBACnetTopic = new System.Windows.Forms.TextBox();
this.label23 = new System.Windows.Forms.Label();
this.groupBox7 = new System.Windows.Forms.GroupBox();
this.textBoxControlTopic = new System.Windows.Forms.TextBox();
this.label8 = new System.Windows.Forms.Label();
this.comboBoxBridge = new System.Windows.Forms.ComboBox();
this.label7 = new System.Windows.Forms.Label();
this.groupBox8 = new System.Windows.Forms.GroupBox();
this.textBoxAccessTopic = new System.Windows.Forms.TextBox();
this.label6 = new System.Windows.Forms.Label();
this.groupBox9 = new System.Windows.Forms.GroupBox();
this.textBoxSqlServerTopic = new System.Windows.Forms.TextBox();
this.label14 = new System.Windows.Forms.Label();
this.groupBox10 = new System.Windows.Forms.GroupBox();
this.checkBoxUdpBridge = new System.Windows.Forms.CheckBox();
this.label28 = new System.Windows.Forms.Label();
this.textBoxUdpServerPort = new System.Windows.Forms.TextBox();
this.label15 = new System.Windows.Forms.Label();
this.label24 = new System.Windows.Forms.Label();
this.textBoxUDPClientServer = new System.Windows.Forms.TextBox();
this.label26 = new System.Windows.Forms.Label();
this.radioButtonMqttClient = new System.Windows.Forms.RadioButton();
this.radioButtonTcpClient = new System.Windows.Forms.RadioButton();
this.radioButtonUDPClient = new System.Windows.Forms.RadioButton();
this.groupBox12 = new System.Windows.Forms.GroupBox();
this.textBoxPLCTopic = new System.Windows.Forms.TextBox();
this.label2 = new System.Windows.Forms.Label();
this.pictureBox1 = new System.Windows.Forms.PictureBox();
this.comboBoxLogLevel = new System.Windows.Forms.ComboBox();
this.label32 = new System.Windows.Forms.Label();
this.comboBoxLan = new System.Windows.Forms.ComboBox();
this.label33 = new System.Windows.Forms.Label();
this.label34 = new System.Windows.Forms.Label();
this.comboBoxOpcItem = new System.Windows.Forms.ComboBox();
this.groupBoxSerialPort.SuspendLayout();
this.groupBox2.SuspendLayout();
this.groupBox3.SuspendLayout();
this.groupBox4.SuspendLayout();
this.groupBox5.SuspendLayout();
this.groupBox6.SuspendLayout();
this.groupBox7.SuspendLayout();
this.groupBox8.SuspendLayout();
this.groupBox9.SuspendLayout();
this.groupBox10.SuspendLayout();
this.groupBox12.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
this.SuspendLayout();
//
// buttonStartStop
//
this.buttonStartStop.Location = new System.Drawing.Point(937, 827);
this.buttonStartStop.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.buttonStartStop.Name = "buttonStartStop";
this.buttonStartStop.Size = new System.Drawing.Size(80, 31);
this.buttonStartStop.TabIndex = 4;
this.buttonStartStop.Text = "Start";
this.buttonStartStop.UseVisualStyleBackColor = true;
this.buttonStartStop.Click += new System.EventHandler(this.ButtonStartStopClick);
//
// textBoxLog
//
this.textBoxLog.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(107)))), ((int)(((byte)(170)))), ((int)(((byte)(55)))));
this.textBoxLog.Location = new System.Drawing.Point(14, 31);
this.textBoxLog.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.textBoxLog.Multiline = true;
this.textBoxLog.Name = "textBoxLog";
this.textBoxLog.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
this.textBoxLog.Size = new System.Drawing.Size(985, 786);
this.textBoxLog.TabIndex = 9;
//
// linkLabel1
//
this.linkLabel1.AutoSize = true;
this.linkLabel1.LinkColor = System.Drawing.Color.Silver;
this.linkLabel1.Location = new System.Drawing.Point(1659, 830);
this.linkLabel1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.linkLabel1.Name = "linkLabel1";
this.linkLabel1.Size = new System.Drawing.Size(89, 18);
this.linkLabel1.TabIndex = 10;
this.linkLabel1.TabStop = true;
this.linkLabel1.Text = "dgiot Ltd";
this.linkLabel1.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.LinkLabel1LinkClicked);
//
// checkBoxReconnect
//
this.checkBoxReconnect.AutoSize = true;
this.checkBoxReconnect.Location = new System.Drawing.Point(1029, 836);
this.checkBoxReconnect.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.checkBoxReconnect.Name = "checkBoxReconnect";
this.checkBoxReconnect.Size = new System.Drawing.Size(160, 22);
this.checkBoxReconnect.TabIndex = 5;
this.checkBoxReconnect.Text = "Auto Reconnect";
this.checkBoxReconnect.UseVisualStyleBackColor = true;
this.checkBoxReconnect.CheckedChanged += new System.EventHandler(this.CheckBoxReconnectCheckedChanged);
//
// checkBoxDisplayHex
//
this.checkBoxDisplayHex.AutoSize = true;
this.checkBoxDisplayHex.Location = new System.Drawing.Point(220, 834);
this.checkBoxDisplayHex.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.checkBoxDisplayHex.Name = "checkBoxDisplayHex";
this.checkBoxDisplayHex.Size = new System.Drawing.Size(61, 22);
this.checkBoxDisplayHex.TabIndex = 11;
this.checkBoxDisplayHex.Text = "Hex";
this.checkBoxDisplayHex.UseVisualStyleBackColor = true;
this.checkBoxDisplayHex.CheckedChanged += new System.EventHandler(this.CheckBoxDisplayHexCheckedChanged);
//
// buttonClear
//
this.buttonClear.Location = new System.Drawing.Point(856, 827);
this.buttonClear.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.buttonClear.Name = "buttonClear";
this.buttonClear.Size = new System.Drawing.Size(72, 31);
this.buttonClear.TabIndex = 12;
this.buttonClear.Text = "Clear";
this.buttonClear.UseVisualStyleBackColor = true;
this.buttonClear.Click += new System.EventHandler(this.ButtonClearClick);
//
// groupBoxSerialPort
//
this.groupBoxSerialPort.Controls.Add(this.comboBoxParity);
this.groupBoxSerialPort.Controls.Add(this.label13);
this.groupBoxSerialPort.Controls.Add(this.label5);
this.groupBoxSerialPort.Controls.Add(this.label4);
this.groupBoxSerialPort.Controls.Add(this.label1);
this.groupBoxSerialPort.Controls.Add(this.comboBoxStopBits);
this.groupBoxSerialPort.Controls.Add(this.comboBoxDataBits);
this.groupBoxSerialPort.Controls.Add(this.comboBoxBaudRate);
this.groupBoxSerialPort.Controls.Add(this.labelSerialPort);
this.groupBoxSerialPort.Controls.Add(this.comboBoxSerialPort);
this.groupBoxSerialPort.Location = new System.Drawing.Point(1022, 23);
this.groupBoxSerialPort.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.groupBoxSerialPort.Name = "groupBoxSerialPort";
this.groupBoxSerialPort.Padding = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.groupBoxSerialPort.Size = new System.Drawing.Size(316, 179);
this.groupBoxSerialPort.TabIndex = 13;
this.groupBoxSerialPort.TabStop = false;
this.groupBoxSerialPort.Text = "Serial Port Capture";
//
// comboBoxParity
//
this.comboBoxParity.FormattingEnabled = true;
this.comboBoxParity.Items.AddRange(new object[] {
"NONE",
"Odd",
"Even",
"Mark",
"Space"});
this.comboBoxParity.Location = new System.Drawing.Point(136, 113);
this.comboBoxParity.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.comboBoxParity.Name = "comboBoxParity";
this.comboBoxParity.Size = new System.Drawing.Size(162, 26);
this.comboBoxParity.TabIndex = 14;
this.comboBoxParity.SelectedIndexChanged += new System.EventHandler(this.ComboBoxParity_SelectedIndexChanged);
//
// label13
//
this.label13.AutoSize = true;
this.label13.Location = new System.Drawing.Point(19, 113);
this.label13.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label13.Name = "label13";
this.label13.Size = new System.Drawing.Size(62, 18);
this.label13.TabIndex = 13;
this.label13.Text = "Parity";
//
// label5
//
this.label5.AutoSize = true;
this.label5.Location = new System.Drawing.Point(19, 145);
this.label5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label5.Name = "label5";
this.label5.Size = new System.Drawing.Size(80, 18);
this.label5.TabIndex = 12;
this.label5.Text = "stopBits";
//
// label4
//
this.label4.AutoSize = true;
this.label4.Location = new System.Drawing.Point(19, 83);
this.label4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(80, 18);
this.label4.TabIndex = 12;
this.label4.Text = "dataBits";
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(19, 54);
this.label1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(89, 18);
this.label1.TabIndex = 12;
this.label1.Text = "Baud Rate";
//
// comboBoxStopBits
//
this.comboBoxStopBits.FormattingEnabled = true;
this.comboBoxStopBits.Items.AddRange(new object[] {
"1",
"2",
"1.5"});
this.comboBoxStopBits.Location = new System.Drawing.Point(136, 143);
this.comboBoxStopBits.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.comboBoxStopBits.Name = "comboBoxStopBits";
this.comboBoxStopBits.Size = new System.Drawing.Size(162, 26);
this.comboBoxStopBits.TabIndex = 11;
this.comboBoxStopBits.SelectedIndexChanged += new System.EventHandler(this.ComboBoxStopBits_SelectedIndexChanged);
//
// comboBoxDataBits
//
this.comboBoxDataBits.FormattingEnabled = true;
this.comboBoxDataBits.Items.AddRange(new object[] {
"8",
"7",
"6",
"5"});
this.comboBoxDataBits.Location = new System.Drawing.Point(136, 83);
this.comboBoxDataBits.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.comboBoxDataBits.Name = "comboBoxDataBits";
this.comboBoxDataBits.Size = new System.Drawing.Size(162, 26);
this.comboBoxDataBits.TabIndex = 11;
this.comboBoxDataBits.SelectedIndexChanged += new System.EventHandler(this.ComboBoxDataBits_SelectedIndexChanged);
//
// comboBoxBaudRate
//
this.comboBoxBaudRate.FormattingEnabled = true;
this.comboBoxBaudRate.Items.AddRange(new object[] {
"1200",
"2400",
"4800",
"9600",
"19200",
"38400",
"57600",
"115200"});
this.comboBoxBaudRate.Location = new System.Drawing.Point(136, 50);
this.comboBoxBaudRate.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.comboBoxBaudRate.Name = "comboBoxBaudRate";
this.comboBoxBaudRate.Size = new System.Drawing.Size(162, 26);
this.comboBoxBaudRate.TabIndex = 11;
//
// labelSerialPort
//
this.labelSerialPort.AutoSize = true;
this.labelSerialPort.Location = new System.Drawing.Point(19, 24);
this.labelSerialPort.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.labelSerialPort.Name = "labelSerialPort";
this.labelSerialPort.Size = new System.Drawing.Size(44, 18);
this.labelSerialPort.TabIndex = 10;
this.labelSerialPort.Text = "Port";
//
// comboBoxSerialPort
//
this.comboBoxSerialPort.FormattingEnabled = true;
this.comboBoxSerialPort.Location = new System.Drawing.Point(136, 22);
this.comboBoxSerialPort.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.comboBoxSerialPort.Name = "comboBoxSerialPort";
this.comboBoxSerialPort.Size = new System.Drawing.Size(162, 26);
this.comboBoxSerialPort.TabIndex = 9;
//
// textBoxTcpServerPort
//
this.textBoxTcpServerPort.Location = new System.Drawing.Point(114, 146);
this.textBoxTcpServerPort.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.textBoxTcpServerPort.Name = "textBoxTcpServerPort";
this.textBoxTcpServerPort.Size = new System.Drawing.Size(202, 28);
this.textBoxTcpServerPort.TabIndex = 7;
this.textBoxTcpServerPort.Text = "5080";
this.textBoxTcpServerPort.TextChanged += new System.EventHandler(this.TextBoxTcpServerPort_TextChanged);
//
// labelTargetPort
//
this.labelTargetPort.AutoSize = true;
this.labelTargetPort.Location = new System.Drawing.Point(28, 150);
this.labelTargetPort.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.labelTargetPort.Name = "labelTargetPort";
this.labelTargetPort.Size = new System.Drawing.Size(62, 18);
this.labelTargetPort.TabIndex = 8;
this.labelTargetPort.Text = "bridge";
//
// textBoxMqttPubTopic
//
this.textBoxMqttPubTopic.Location = new System.Drawing.Point(114, 276);
this.textBoxMqttPubTopic.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.textBoxMqttPubTopic.Name = "textBoxMqttPubTopic";
this.textBoxMqttPubTopic.Size = new System.Drawing.Size(202, 28);
this.textBoxMqttPubTopic.TabIndex = 22;
this.textBoxMqttPubTopic.Text = "thing/dgiot/post/";
this.textBoxMqttPubTopic.TextChanged += new System.EventHandler(this.TextBoxMqttPubTopic_TextChanged);
//
// label12
//
this.label12.AutoSize = true;
this.label12.Location = new System.Drawing.Point(6, 283);
this.label12.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label12.Name = "label12";
this.label12.Size = new System.Drawing.Size(80, 18);
this.label12.TabIndex = 21;
this.label12.Text = "PubTopic";
//
// textBoxMqttSubTopic
//
this.textBoxMqttSubTopic.Location = new System.Drawing.Point(115, 241);
this.textBoxMqttSubTopic.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.textBoxMqttSubTopic.Name = "textBoxMqttSubTopic";
this.textBoxMqttSubTopic.Size = new System.Drawing.Size(201, 28);
this.textBoxMqttSubTopic.TabIndex = 20;
this.textBoxMqttSubTopic.Text = "thing/dgiot/";
this.textBoxMqttSubTopic.TextChanged += new System.EventHandler(this.TextBoxMqttSubTopic_TextChanged);
//
// label11
//
this.label11.AutoSize = true;
this.label11.Location = new System.Drawing.Point(4, 245);
this.label11.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label11.Name = "label11";
this.label11.Size = new System.Drawing.Size(80, 18);
this.label11.TabIndex = 19;
this.label11.Text = "SubTopic";
//
// textBoxMqttPassword
//
this.textBoxMqttPassword.Location = new System.Drawing.Point(115, 136);
this.textBoxMqttPassword.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.textBoxMqttPassword.Name = "textBoxMqttPassword";
this.textBoxMqttPassword.Size = new System.Drawing.Size(201, 28);
this.textBoxMqttPassword.TabIndex = 18;
this.textBoxMqttPassword.Text = "secret";
this.textBoxMqttPassword.TextChanged += new System.EventHandler(this.TextBoxMqttPassword_TextChanged);
//
// label10
//
this.label10.AutoSize = true;
this.label10.Location = new System.Drawing.Point(6, 140);
this.label10.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label10.Name = "label10";
this.label10.Size = new System.Drawing.Size(80, 18);
this.label10.TabIndex = 17;
this.label10.Text = "PassWord";
//
// textBoxMqttUserName
//
this.textBoxMqttUserName.Location = new System.Drawing.Point(115, 100);
this.textBoxMqttUserName.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.textBoxMqttUserName.Name = "textBoxMqttUserName";
this.textBoxMqttUserName.Size = new System.Drawing.Size(201, 28);
this.textBoxMqttUserName.TabIndex = 16;
this.textBoxMqttUserName.Text = "productid";
this.textBoxMqttUserName.TextChanged += new System.EventHandler(this.TextBoxMqttUserName_TextChanged);
//
// label9
//
this.label9.AutoSize = true;
this.label9.Location = new System.Drawing.Point(3, 106);
this.label9.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label9.Name = "label9";
this.label9.Size = new System.Drawing.Size(80, 18);
this.label9.TabIndex = 15;
this.label9.Text = "UserName";
//
// label3
//
this.label3.AutoSize = true;
this.label3.ForeColor = System.Drawing.Color.Silver;
this.label3.Location = new System.Drawing.Point(1567, 831);
this.label3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(71, 18);
this.label3.TabIndex = 15;
this.label3.Text = "Author:";
//
// linkLabel2
//
this.linkLabel2.AutoSize = true;
this.linkLabel2.LinkColor = System.Drawing.Color.Silver;
this.linkLabel2.Location = new System.Drawing.Point(1785, 830);
this.linkLabel2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.linkLabel2.Name = "linkLabel2";
this.linkLabel2.Size = new System.Drawing.Size(62, 18);
this.linkLabel2.TabIndex = 16;
this.linkLabel2.TabStop = true;
this.linkLabel2.Text = "DG-IoT";
this.linkLabel2.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.LinkLabel2_LinkClicked);
//
// textToPayload
//
this.textToPayload.Location = new System.Drawing.Point(288, 830);
this.textToPayload.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.textToPayload.Name = "textToPayload";
this.textToPayload.Size = new System.Drawing.Size(283, 28);
this.textToPayload.TabIndex = 14;
this.textToPayload.Text = "12345678";
this.textToPayload.TextChanged += new System.EventHandler(this.TextToPayload_TextChanged);
//
// textBoxTcpClientLogin
//
this.textBoxTcpClientLogin.Location = new System.Drawing.Point(114, 108);
this.textBoxTcpClientLogin.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.textBoxTcpClientLogin.Name = "textBoxTcpClientLogin";
this.textBoxTcpClientLogin.Size = new System.Drawing.Size(202, 28);
this.textBoxTcpClientLogin.TabIndex = 12;
this.textBoxTcpClientLogin.Text = "login";
this.textBoxTcpClientLogin.TextChanged += new System.EventHandler(this.TextBoxTcpClientLogin_TextChanged);
//
// textBoxTcpClientPort
//
this.textBoxTcpClientPort.Location = new System.Drawing.Point(114, 67);
this.textBoxTcpClientPort.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.textBoxTcpClientPort.Name = "textBoxTcpClientPort";
this.textBoxTcpClientPort.Size = new System.Drawing.Size(202, 28);
this.textBoxTcpClientPort.TabIndex = 7;
this.textBoxTcpClientPort.Text = "5080";
this.textBoxTcpClientPort.TextChanged += new System.EventHandler(this.TextBoxTcpClientPort_TextChanged);
//
// textBoxMqttClientId
//
this.textBoxMqttClientId.Location = new System.Drawing.Point(115, 205);
this.textBoxMqttClientId.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.textBoxMqttClientId.Name = "textBoxMqttClientId";
this.textBoxMqttClientId.Size = new System.Drawing.Size(201, 28);
this.textBoxMqttClientId.TabIndex = 12;
this.textBoxMqttClientId.Text = "clientid";
this.textBoxMqttClientId.TextChanged += new System.EventHandler(this.TextBoxMqttClientId_TextChanged);
//
// textBoxMqttPort
//
this.textBoxMqttPort.Location = new System.Drawing.Point(115, 64);
this.textBoxMqttPort.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.textBoxMqttPort.Name = "textBoxMqttPort";
this.textBoxMqttPort.Size = new System.Drawing.Size(201, 28);
this.textBoxMqttPort.TabIndex = 7;
this.textBoxMqttPort.Text = "1883";
this.textBoxMqttPort.TextChanged += new System.EventHandler(this.TextBoxMqttPort_TextChanged);
//
// textBoxUDPClientLogin
//
this.textBoxUDPClientLogin.Location = new System.Drawing.Point(114, 106);
this.textBoxUDPClientLogin.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.textBoxUDPClientLogin.Name = "textBoxUDPClientLogin";
this.textBoxUDPClientLogin.Size = new System.Drawing.Size(202, 28);
this.textBoxUDPClientLogin.TabIndex = 12;
this.textBoxUDPClientLogin.Text = "login";
this.textBoxUDPClientLogin.TextChanged += new System.EventHandler(this.TextBoxUDPClientLogin_TextChanged);
//
// textBoxUDPCLientPort
//
this.textBoxUDPCLientPort.Location = new System.Drawing.Point(114, 65);
this.textBoxUDPCLientPort.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.textBoxUDPCLientPort.Name = "textBoxUDPCLientPort";
this.textBoxUDPCLientPort.Size = new System.Drawing.Size(202, 28);
this.textBoxUDPCLientPort.TabIndex = 7;
this.textBoxUDPCLientPort.Text = "6080";
this.textBoxUDPCLientPort.TextChanged += new System.EventHandler(this.TextBoxUDPCLientPort_TextChanged);
//
// sendBridge
//
this.sendBridge.Location = new System.Drawing.Point(776, 827);
this.sendBridge.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.sendBridge.Name = "sendBridge";
this.sendBridge.Size = new System.Drawing.Size(71, 31);
this.sendBridge.TabIndex = 17;
this.sendBridge.Text = "Send";
this.sendBridge.UseVisualStyleBackColor = true;
this.sendBridge.Click += new System.EventHandler(this.SendBridge_Click);
//
// groupBox2
//
this.groupBox2.Controls.Add(this.labelTargetPort);
this.groupBox2.Controls.Add(this.textBoxTcpServerPort);
this.groupBox2.Controls.Add(this.label16);
this.groupBox2.Controls.Add(this.textBoxTcpClientLogin);
this.groupBox2.Controls.Add(this.textBoxTcpClientPort);
this.groupBox2.Controls.Add(this.label17);
this.groupBox2.Controls.Add(this.textBoxTcpClientServer);
this.groupBox2.Controls.Add(this.label18);
this.groupBox2.Controls.Add(this.checkBoxTcpBridge);
this.groupBox2.Location = new System.Drawing.Point(1531, 421);
this.groupBox2.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.groupBox2.Name = "groupBox2";
this.groupBox2.Padding = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.groupBox2.Size = new System.Drawing.Size(325, 191);
this.groupBox2.TabIndex = 18;
this.groupBox2.TabStop = false;
this.groupBox2.Text = "TCP Client Channel";
//
// label16
//
this.label16.AutoSize = true;
this.label16.Location = new System.Drawing.Point(26, 109);
this.label16.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label16.Name = "label16";
this.label16.Size = new System.Drawing.Size(53, 18);
this.label16.TabIndex = 13;
this.label16.Text = "login";
//
// label17
//
this.label17.AutoSize = true;
this.label17.Location = new System.Drawing.Point(27, 71);
this.label17.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label17.Name = "label17";
this.label17.Size = new System.Drawing.Size(44, 18);
this.label17.TabIndex = 8;
this.label17.Text = "Port";
//
// textBoxTcpClientServer
//
this.textBoxTcpClientServer.Location = new System.Drawing.Point(114, 30);
this.textBoxTcpClientServer.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.textBoxTcpClientServer.Name = "textBoxTcpClientServer";
this.textBoxTcpClientServer.Size = new System.Drawing.Size(202, 28);
this.textBoxTcpClientServer.TabIndex = 5;
this.textBoxTcpClientServer.Text = "prod.iotn2n.com";
this.textBoxTcpClientServer.TextChanged += new System.EventHandler(this.TextBoxTcpClientServer_TextChanged);
//
// label18
//
this.label18.AutoSize = true;
this.label18.Location = new System.Drawing.Point(26, 35);
this.label18.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label18.Name = "label18";
this.label18.Size = new System.Drawing.Size(62, 18);
this.label18.TabIndex = 6;
this.label18.Text = "Server";
//
// checkBoxTcpBridge
//
this.checkBoxTcpBridge.AutoSize = true;
this.checkBoxTcpBridge.Location = new System.Drawing.Point(8, 149);
this.checkBoxTcpBridge.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.checkBoxTcpBridge.Name = "checkBoxTcpBridge";
this.checkBoxTcpBridge.Size = new System.Drawing.Size(22, 21);
this.checkBoxTcpBridge.TabIndex = 23;
this.checkBoxTcpBridge.UseVisualStyleBackColor = true;
this.checkBoxTcpBridge.CheckedChanged += new System.EventHandler(this.CheckBoxTcpBridge_CheckedChanged);
//
// groupBox3
//
this.groupBox3.Controls.Add(this.comboBoxDevAddr);
this.groupBox3.Controls.Add(this.label30);
this.groupBox3.Controls.Add(this.label29);
this.groupBox3.Controls.Add(this.comboBoxCmdProdxy);
this.groupBox3.Controls.Add(this.checkBoxMqttBridge);
this.groupBox3.Controls.Add(this.textBoxMqttServerPort);
this.groupBox3.Controls.Add(this.label27);
this.groupBox3.Controls.Add(this.textBoxMqttPubTopic);
this.groupBox3.Controls.Add(this.label12);
this.groupBox3.Controls.Add(this.label20);
this.groupBox3.Controls.Add(this.textBoxMqttClientId);
this.groupBox3.Controls.Add(this.textBoxMqttSubTopic);
this.groupBox3.Controls.Add(this.textBoxMqttPort);
this.groupBox3.Controls.Add(this.label21);
this.groupBox3.Controls.Add(this.textBoxMqttSever);
this.groupBox3.Controls.Add(this.label11);
this.groupBox3.Controls.Add(this.label22);
this.groupBox3.Controls.Add(this.textBoxMqttUserName);
this.groupBox3.Controls.Add(this.textBoxMqttPassword);
this.groupBox3.Controls.Add(this.label9);
this.groupBox3.Controls.Add(this.label10);
this.groupBox3.Location = new System.Drawing.Point(1531, 23);
this.groupBox3.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.groupBox3.Name = "groupBox3";
this.groupBox3.Padding = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.groupBox3.Size = new System.Drawing.Size(325, 389);
this.groupBox3.TabIndex = 19;
this.groupBox3.TabStop = false;
this.groupBox3.Text = "Mqtt Client Channel";
//
// comboBoxDevAddr
//
this.comboBoxDevAddr.FormattingEnabled = true;
this.comboBoxDevAddr.Location = new System.Drawing.Point(115, 172);
this.comboBoxDevAddr.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.comboBoxDevAddr.Name = "comboBoxDevAddr";
this.comboBoxDevAddr.Size = new System.Drawing.Size(201, 26);
this.comboBoxDevAddr.TabIndex = 15;
this.comboBoxDevAddr.SelectedIndexChanged += new System.EventHandler(this.ComboBoxDevAddr_SelectedIndexChanged);
//
// label30
//
this.label30.AutoSize = true;
this.label30.Location = new System.Drawing.Point(4, 175);
this.label30.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label30.Name = "label30";
this.label30.Size = new System.Drawing.Size(71, 18);
this.label30.TabIndex = 39;
this.label30.Text = "DevAddr";
//
// label29
//
this.label29.AutoSize = true;
this.label29.Location = new System.Drawing.Point(4, 314);
this.label29.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label29.Name = "label29";
this.label29.Size = new System.Drawing.Size(89, 18);
this.label29.TabIndex = 37;
this.label29.Text = "cmd proxy";
//
// comboBoxCmdProdxy
//
this.comboBoxCmdProdxy.FormattingEnabled = true;
this.comboBoxCmdProdxy.Items.AddRange(new object[] {
"ffmpeg"});
this.comboBoxCmdProdxy.Location = new System.Drawing.Point(114, 311);
this.comboBoxCmdProdxy.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.comboBoxCmdProdxy.Name = "comboBoxCmdProdxy";
this.comboBoxCmdProdxy.Size = new System.Drawing.Size(202, 26);
this.comboBoxCmdProdxy.TabIndex = 36;
this.comboBoxCmdProdxy.SelectedIndexChanged += new System.EventHandler(this.ComboBoxCmdProdxy_SelectedIndexChanged);
//
// checkBoxMqttBridge
//
this.checkBoxMqttBridge.AutoSize = true;
this.checkBoxMqttBridge.Location = new System.Drawing.Point(8, 348);
this.checkBoxMqttBridge.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.checkBoxMqttBridge.Name = "checkBoxMqttBridge";
this.checkBoxMqttBridge.Size = new System.Drawing.Size(22, 21);
this.checkBoxMqttBridge.TabIndex = 36;
this.checkBoxMqttBridge.UseVisualStyleBackColor = true;
this.checkBoxMqttBridge.CheckedChanged += new System.EventHandler(this.CheckBoxMqttBridge_CheckedChanged);
//
// textBoxMqttServerPort
//
this.textBoxMqttServerPort.Location = new System.Drawing.Point(114, 343);
this.textBoxMqttServerPort.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.textBoxMqttServerPort.Name = "textBoxMqttServerPort";
this.textBoxMqttServerPort.Size = new System.Drawing.Size(202, 28);
this.textBoxMqttServerPort.TabIndex = 24;
this.textBoxMqttServerPort.Text = "1883";
this.textBoxMqttServerPort.TextChanged += new System.EventHandler(this.TextBoxMqttServerPort_TextChanged);
//
// label27
//
this.label27.AutoSize = true;
this.label27.Location = new System.Drawing.Point(36, 347);
this.label27.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label27.Name = "label27";
this.label27.Size = new System.Drawing.Size(62, 18);
this.label27.TabIndex = 23;
this.label27.Text = "bridge";
//
// label20
//
this.label20.AutoSize = true;
this.label20.Location = new System.Drawing.Point(3, 209);
this.label20.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label20.Name = "label20";
this.label20.Size = new System.Drawing.Size(80, 18);
this.label20.TabIndex = 13;
this.label20.Text = "Clientid";
//
// label21
//
this.label21.AutoSize = true;
this.label21.Location = new System.Drawing.Point(4, 67);
this.label21.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label21.Name = "label21";
this.label21.Size = new System.Drawing.Size(44, 18);
this.label21.TabIndex = 8;
this.label21.Text = "Port";
//
// textBoxMqttSever
//
this.textBoxMqttSever.Location = new System.Drawing.Point(115, 29);
this.textBoxMqttSever.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.textBoxMqttSever.Name = "textBoxMqttSever";
this.textBoxMqttSever.Size = new System.Drawing.Size(201, 28);
this.textBoxMqttSever.TabIndex = 5;
this.textBoxMqttSever.Text = "prod.iotn2n.com";
this.textBoxMqttSever.TextChanged += new System.EventHandler(this.TextBoxMqttSever_TextChanged);
//
// label22
//
this.label22.AutoSize = true;
this.label22.Location = new System.Drawing.Point(4, 34);
this.label22.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label22.Name = "label22";
this.label22.Size = new System.Drawing.Size(62, 18);
this.label22.TabIndex = 6;
this.label22.Text = "Server";
//
// groupBox4
//
this.groupBox4.Controls.Add(this.comboBoxOpcItem);
this.groupBox4.Controls.Add(this.label36);
this.groupBox4.Controls.Add(this.label35);
this.groupBox4.Controls.Add(this.comboBoxOpcGroup);
this.groupBox4.Controls.Add(this.comboBoxOpcHost);
this.groupBox4.Controls.Add(this.comboBoxOpcServer);
this.groupBox4.Controls.Add(this.label31);
this.groupBox4.Controls.Add(this.label25);
this.groupBox4.Location = new System.Drawing.Point(1022, 286);
this.groupBox4.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.groupBox4.Name = "groupBox4";
this.groupBox4.Padding = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.groupBox4.Size = new System.Drawing.Size(316, 155);
this.groupBox4.TabIndex = 18;
this.groupBox4.TabStop = false;
this.groupBox4.Text = "OPC_DA Capture";
//
// label36
//
this.label36.AutoSize = true;
this.label36.Location = new System.Drawing.Point(6, 120);
this.label36.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label36.Name = "label36";
this.label36.Size = new System.Drawing.Size(53, 18);
this.label36.TabIndex = 44;
this.label36.Text = "Items";
//
// label35
//
this.label35.AutoSize = true;
this.label35.Location = new System.Drawing.Point(7, 89);
this.label35.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label35.Name = "label35";
this.label35.Size = new System.Drawing.Size(53, 18);
this.label35.TabIndex = 43;
this.label35.Text = "Group";
//
// comboBoxOpcGroup
//
this.comboBoxOpcGroup.FormattingEnabled = true;
this.comboBoxOpcGroup.Location = new System.Drawing.Point(75, 87);
this.comboBoxOpcGroup.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.comboBoxOpcGroup.Name = "comboBoxOpcGroup";
this.comboBoxOpcGroup.Size = new System.Drawing.Size(228, 26);
this.comboBoxOpcGroup.TabIndex = 42;
this.comboBoxOpcGroup.SelectedIndexChanged += new System.EventHandler(this.ComboBoxOpcGroup_SelectedIndexChanged);
//
// comboBoxOpcHost
//
this.comboBoxOpcHost.FormattingEnabled = true;
this.comboBoxOpcHost.Location = new System.Drawing.Point(75, 25);
this.comboBoxOpcHost.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.comboBoxOpcHost.Name = "comboBoxOpcHost";
this.comboBoxOpcHost.Size = new System.Drawing.Size(228, 26);
this.comboBoxOpcHost.TabIndex = 41;
this.comboBoxOpcHost.SelectedIndexChanged += new System.EventHandler(this.ComboBoxOpcHost_SelectedIndexChanged);
//
// comboBoxOpcServer
//
this.comboBoxOpcServer.FormattingEnabled = true;
this.comboBoxOpcServer.Location = new System.Drawing.Point(75, 55);
this.comboBoxOpcServer.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.comboBoxOpcServer.Name = "comboBoxOpcServer";
this.comboBoxOpcServer.Size = new System.Drawing.Size(228, 26);
this.comboBoxOpcServer.TabIndex = 40;
this.comboBoxOpcServer.SelectedIndexChanged += new System.EventHandler(this.ComboBoxOpcServer_SelectedIndexChanged);
//
// label31
//
this.label31.AutoSize = true;
this.label31.Location = new System.Drawing.Point(3, 28);
this.label31.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label31.Name = "label31";
this.label31.Size = new System.Drawing.Size(44, 18);
this.label31.TabIndex = 7;
this.label31.Text = "Host";
//
// label25
//
this.label25.AutoSize = true;
this.label25.Location = new System.Drawing.Point(5, 60);
this.label25.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label25.Name = "label25";
this.label25.Size = new System.Drawing.Size(62, 18);
this.label25.TabIndex = 6;
this.label25.Text = "Server";
//
// textBoxOpcIp
//
this.textBoxOpcIp.Location = new System.Drawing.Point(0, 0);
this.textBoxOpcIp.Name = "textBoxOpcIp";
this.textBoxOpcIp.Size = new System.Drawing.Size(100, 28);
this.textBoxOpcIp.TabIndex = 0;
//
// groupBox5
//
this.groupBox5.Controls.Add(this.textBoxOPCUATopic);
this.groupBox5.Controls.Add(this.label19);
this.groupBox5.Location = new System.Drawing.Point(1022, 452);
this.groupBox5.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.groupBox5.Name = "groupBox5";
this.groupBox5.Padding = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.groupBox5.Size = new System.Drawing.Size(316, 67);
this.groupBox5.TabIndex = 19;
this.groupBox5.TabStop = false;
this.groupBox5.Text = "OPC_UA Capture";
//
// textBoxOPCUATopic
//
this.textBoxOPCUATopic.Location = new System.Drawing.Point(53, 26);
this.textBoxOPCUATopic.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.textBoxOPCUATopic.Name = "textBoxOPCUATopic";
this.textBoxOPCUATopic.ReadOnly = true;
this.textBoxOPCUATopic.Size = new System.Drawing.Size(250, 28);
this.textBoxOPCUATopic.TabIndex = 5;
this.textBoxOPCUATopic.Text = "thing/opdua/clientid";
this.textBoxOPCUATopic.TextChanged += new System.EventHandler(this.TextBoxOPCUATopic_TextChanged);
//
// label19
//
this.label19.AutoSize = true;
this.label19.Location = new System.Drawing.Point(3, 29);
this.label19.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label19.Name = "label19";
this.label19.Size = new System.Drawing.Size(26, 18);
this.label19.TabIndex = 6;
this.label19.Text = "To";
//
// groupBox6
//
this.groupBox6.Controls.Add(this.textBoxBACnetTopic);
this.groupBox6.Controls.Add(this.label23);
this.groupBox6.Location = new System.Drawing.Point(1022, 533);
this.groupBox6.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.groupBox6.Name = "groupBox6";
this.groupBox6.Padding = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.groupBox6.Size = new System.Drawing.Size(316, 63);
this.groupBox6.TabIndex = 20;
this.groupBox6.TabStop = false;
this.groupBox6.Text = "BACnet Capture";
//
// textBoxBACnetTopic
//
this.textBoxBACnetTopic.Location = new System.Drawing.Point(53, 26);
this.textBoxBACnetTopic.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.textBoxBACnetTopic.Name = "textBoxBACnetTopic";
this.textBoxBACnetTopic.ReadOnly = true;
this.textBoxBACnetTopic.Size = new System.Drawing.Size(252, 28);
this.textBoxBACnetTopic.TabIndex = 5;
this.textBoxBACnetTopic.Text = "thing/bacnet/clientid";
this.textBoxBACnetTopic.TextChanged += new System.EventHandler(this.TextBoxBACnetTopic_TextChanged);
//
// label23
//
this.label23.AutoSize = true;
this.label23.Location = new System.Drawing.Point(3, 32);
this.label23.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label23.Name = "label23";
this.label23.Size = new System.Drawing.Size(26, 18);
this.label23.TabIndex = 6;
this.label23.Text = "To";
//
// groupBox7
//
this.groupBox7.Controls.Add(this.textBoxControlTopic);
this.groupBox7.Controls.Add(this.label8);
this.groupBox7.Location = new System.Drawing.Point(1022, 607);
this.groupBox7.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.groupBox7.Name = "groupBox7";
this.groupBox7.Padding = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.groupBox7.Size = new System.Drawing.Size(316, 71);
this.groupBox7.TabIndex = 21;
this.groupBox7.TabStop = false;
this.groupBox7.Text = "Control Capture";
//
// textBoxControlTopic
//
this.textBoxControlTopic.Location = new System.Drawing.Point(53, 26);
this.textBoxControlTopic.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.textBoxControlTopic.Name = "textBoxControlTopic";
this.textBoxControlTopic.ReadOnly = true;
this.textBoxControlTopic.Size = new System.Drawing.Size(253, 28);
this.textBoxControlTopic.TabIndex = 5;
this.textBoxControlTopic.Text = "thing/control/clientid";
this.textBoxControlTopic.TextChanged += new System.EventHandler(this.TextBoxControlTopic_TextChanged);
//
// label8
//
this.label8.AutoSize = true;
this.label8.Location = new System.Drawing.Point(3, 31);
this.label8.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label8.Name = "label8";
this.label8.Size = new System.Drawing.Size(26, 18);
this.label8.TabIndex = 6;
this.label8.Text = "To";
//
// comboBoxBridge
//
this.comboBoxBridge.FormattingEnabled = true;
this.comboBoxBridge.Items.AddRange(new object[] {
"SerialPort,",
"TcpServer,",
"BACnet,",
"OPCDA,",
"OPCUA,",
"MqttClient,",
"MqttServer,",
"TcpClient,",
"TcpServer,",
"UdpClient,",
"UdpServer,",
"PLC,",
"Control,",
"Access,",
"SqlServer"});
this.comboBoxBridge.Location = new System.Drawing.Point(57, 830);
this.comboBoxBridge.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.comboBoxBridge.Name = "comboBoxBridge";
this.comboBoxBridge.Size = new System.Drawing.Size(140, 26);
this.comboBoxBridge.TabIndex = 13;
this.comboBoxBridge.SelectedIndexChanged += new System.EventHandler(this.ComboBoxBridge_SelectedIndexChanged);
//
// label7
//
this.label7.AutoSize = true;
this.label7.Location = new System.Drawing.Point(14, 832);
this.label7.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label7.Name = "label7";
this.label7.Size = new System.Drawing.Size(26, 18);
this.label7.TabIndex = 18;
this.label7.Text = "To";
//
// groupBox8
//
this.groupBox8.Controls.Add(this.textBoxAccessTopic);
this.groupBox8.Controls.Add(this.label6);
this.groupBox8.Location = new System.Drawing.Point(1022, 683);
this.groupBox8.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.groupBox8.Name = "groupBox8";
this.groupBox8.Padding = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.groupBox8.Size = new System.Drawing.Size(316, 64);
this.groupBox8.TabIndex = 22;
this.groupBox8.TabStop = false;
this.groupBox8.Text = "Access Capture";
//
// textBoxAccessTopic
//
this.textBoxAccessTopic.Location = new System.Drawing.Point(53, 26);
this.textBoxAccessTopic.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.textBoxAccessTopic.Name = "textBoxAccessTopic";
this.textBoxAccessTopic.ReadOnly = true;
this.textBoxAccessTopic.Size = new System.Drawing.Size(253, 28);
this.textBoxAccessTopic.TabIndex = 5;
this.textBoxAccessTopic.Text = "thing/mdb/clientid";
this.textBoxAccessTopic.TextChanged += new System.EventHandler(this.TextBoxAccessTopic_TextChanged);
//
// label6
//
this.label6.AutoSize = true;
this.label6.Location = new System.Drawing.Point(3, 31);
this.label6.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label6.Name = "label6";
this.label6.Size = new System.Drawing.Size(26, 18);
this.label6.TabIndex = 6;
this.label6.Text = "To";
//
// groupBox9
//
this.groupBox9.Controls.Add(this.textBoxSqlServerTopic);
this.groupBox9.Controls.Add(this.label14);
this.groupBox9.Location = new System.Drawing.Point(1022, 758);
this.groupBox9.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.groupBox9.Name = "groupBox9";
this.groupBox9.Padding = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.groupBox9.Size = new System.Drawing.Size(316, 63);
this.groupBox9.TabIndex = 23;
this.groupBox9.TabStop = false;
this.groupBox9.Text = "Sql Server Capture";
//
// textBoxSqlServerTopic
//
this.textBoxSqlServerTopic.Location = new System.Drawing.Point(53, 25);
this.textBoxSqlServerTopic.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.textBoxSqlServerTopic.Name = "textBoxSqlServerTopic";
this.textBoxSqlServerTopic.ReadOnly = true;
this.textBoxSqlServerTopic.Size = new System.Drawing.Size(252, 28);
this.textBoxSqlServerTopic.TabIndex = 5;
this.textBoxSqlServerTopic.Text = "thing/sqlserver/clientid";
this.textBoxSqlServerTopic.TextChanged += new System.EventHandler(this.TextBoxSqlServerTopic_TextChanged);
//
// label14
//
this.label14.AutoSize = true;
this.label14.Location = new System.Drawing.Point(3, 29);
this.label14.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label14.Name = "label14";
this.label14.Size = new System.Drawing.Size(26, 18);
this.label14.TabIndex = 6;
this.label14.Text = "To";
//
// groupBox10
//
this.groupBox10.Controls.Add(this.checkBoxUdpBridge);
this.groupBox10.Controls.Add(this.label28);
this.groupBox10.Controls.Add(this.textBoxUdpServerPort);
this.groupBox10.Controls.Add(this.label15);
this.groupBox10.Controls.Add(this.textBoxUDPClientLogin);
this.groupBox10.Controls.Add(this.textBoxUDPCLientPort);
this.groupBox10.Controls.Add(this.label24);
this.groupBox10.Controls.Add(this.textBoxUDPClientServer);
this.groupBox10.Controls.Add(this.label26);
this.groupBox10.Location = new System.Drawing.Point(1531, 624);
this.groupBox10.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.groupBox10.Name = "groupBox10";
this.groupBox10.Padding = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.groupBox10.Size = new System.Drawing.Size(325, 193);
this.groupBox10.TabIndex = 19;
this.groupBox10.TabStop = false;
this.groupBox10.Text = "UDP Client Channel";
//
// checkBoxUdpBridge
//
this.checkBoxUdpBridge.AutoSize = true;
this.checkBoxUdpBridge.Location = new System.Drawing.Point(8, 151);
this.checkBoxUdpBridge.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.checkBoxUdpBridge.Name = "checkBoxUdpBridge";
this.checkBoxUdpBridge.Size = new System.Drawing.Size(22, 21);
this.checkBoxUdpBridge.TabIndex = 24;
this.checkBoxUdpBridge.UseVisualStyleBackColor = true;
this.checkBoxUdpBridge.CheckedChanged += new System.EventHandler(this.CheckBoxUdpBridge_CheckedChanged);
//
// label28
//
this.label28.AutoSize = true;
this.label28.Location = new System.Drawing.Point(32, 151);
this.label28.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label28.Name = "label28";
this.label28.Size = new System.Drawing.Size(62, 18);
this.label28.TabIndex = 24;
this.label28.Text = "bridge";
//
// textBoxUdpServerPort
//
this.textBoxUdpServerPort.Location = new System.Drawing.Point(114, 149);
this.textBoxUdpServerPort.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.textBoxUdpServerPort.Name = "textBoxUdpServerPort";
this.textBoxUdpServerPort.Size = new System.Drawing.Size(202, 28);
this.textBoxUdpServerPort.TabIndex = 24;
this.textBoxUdpServerPort.Text = "6080";
this.textBoxUdpServerPort.TextChanged += new System.EventHandler(this.TextBoxUdpServerPort_TextChanged);
//
// label15
//
this.label15.AutoSize = true;
this.label15.Location = new System.Drawing.Point(27, 108);
this.label15.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label15.Name = "label15";
this.label15.Size = new System.Drawing.Size(53, 18);
this.label15.TabIndex = 13;
this.label15.Text = "login";
//
// label24
//
this.label24.AutoSize = true;
this.label24.Location = new System.Drawing.Point(28, 68);
this.label24.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label24.Name = "label24";
this.label24.Size = new System.Drawing.Size(44, 18);
this.label24.TabIndex = 8;
this.label24.Text = "Port";
//
// textBoxUDPClientServer
//
this.textBoxUDPClientServer.Location = new System.Drawing.Point(114, 23);
this.textBoxUDPClientServer.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.textBoxUDPClientServer.Name = "textBoxUDPClientServer";
this.textBoxUDPClientServer.Size = new System.Drawing.Size(202, 28);
this.textBoxUDPClientServer.TabIndex = 5;
this.textBoxUDPClientServer.Text = "prod.iotn2n.com";
this.textBoxUDPClientServer.TextChanged += new System.EventHandler(this.TextBoxUDPClientServer_TextChanged);
//
// label26
//
this.label26.AutoSize = true;
this.label26.Location = new System.Drawing.Point(26, 31);
this.label26.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label26.Name = "label26";
this.label26.Size = new System.Drawing.Size(62, 18);
this.label26.TabIndex = 6;
this.label26.Text = "Server";
//
// radioButtonMqttClient
//
this.radioButtonMqttClient.AutoSize = true;
this.radioButtonMqttClient.Checked = true;
this.radioButtonMqttClient.Location = new System.Drawing.Point(1501, 47);
this.radioButtonMqttClient.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.radioButtonMqttClient.Name = "radioButtonMqttClient";
this.radioButtonMqttClient.Size = new System.Drawing.Size(21, 20);
this.radioButtonMqttClient.TabIndex = 30;
this.radioButtonMqttClient.TabStop = true;
this.radioButtonMqttClient.UseVisualStyleBackColor = true;
this.radioButtonMqttClient.CheckedChanged += new System.EventHandler(this.RadioButtonMqttClient_CheckedChanged);
//
// radioButtonTcpClient
//
this.radioButtonTcpClient.AutoSize = true;
this.radioButtonTcpClient.Location = new System.Drawing.Point(1501, 421);
this.radioButtonTcpClient.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.radioButtonTcpClient.Name = "radioButtonTcpClient";
this.radioButtonTcpClient.Size = new System.Drawing.Size(21, 20);
this.radioButtonTcpClient.TabIndex = 31;
this.radioButtonTcpClient.UseVisualStyleBackColor = true;
this.radioButtonTcpClient.CheckedChanged += new System.EventHandler(this.RadioButtonTcpClient_CheckedChanged);
//
// radioButtonUDPClient
//
this.radioButtonUDPClient.AutoSize = true;
this.radioButtonUDPClient.Location = new System.Drawing.Point(1495, 654);
this.radioButtonUDPClient.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.radioButtonUDPClient.Name = "radioButtonUDPClient";
this.radioButtonUDPClient.Size = new System.Drawing.Size(21, 20);
this.radioButtonUDPClient.TabIndex = 32;
this.radioButtonUDPClient.UseVisualStyleBackColor = true;
//
// groupBox12
//
this.groupBox12.Controls.Add(this.textBoxPLCTopic);
this.groupBox12.Controls.Add(this.label2);
this.groupBox12.Location = new System.Drawing.Point(1022, 211);
this.groupBox12.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.groupBox12.Name = "groupBox12";
this.groupBox12.Padding = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.groupBox12.Size = new System.Drawing.Size(316, 66);
this.groupBox12.TabIndex = 19;
this.groupBox12.TabStop = false;
this.groupBox12.Text = "PLC Capture";
//
// textBoxPLCTopic
//
this.textBoxPLCTopic.Location = new System.Drawing.Point(53, 23);
this.textBoxPLCTopic.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.textBoxPLCTopic.Name = "textBoxPLCTopic";
this.textBoxPLCTopic.ReadOnly = true;
this.textBoxPLCTopic.Size = new System.Drawing.Size(246, 28);
this.textBoxPLCTopic.TabIndex = 5;
this.textBoxPLCTopic.Text = "thing/plc/clientid";
this.textBoxPLCTopic.TextChanged += new System.EventHandler(this.TextBoxPLCTopic_TextChanged);
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(3, 29);
this.label2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(26, 18);
this.label2.TabIndex = 6;
this.label2.Text = "To";
//
// pictureBox1
//
this.pictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
this.pictureBox1.Location = new System.Drawing.Point(1346, 31);
this.pictureBox1.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.pictureBox1.Name = "pictureBox1";
this.pictureBox1.Size = new System.Drawing.Size(148, 786);
this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
this.pictureBox1.TabIndex = 35;
this.pictureBox1.TabStop = false;
//
// comboBoxLogLevel
//
this.comboBoxLogLevel.FormattingEnabled = true;
this.comboBoxLogLevel.Location = new System.Drawing.Point(668, 830);
this.comboBoxLogLevel.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.comboBoxLogLevel.Name = "comboBoxLogLevel";
this.comboBoxLogLevel.Size = new System.Drawing.Size(98, 26);
this.comboBoxLogLevel.TabIndex = 36;
this.comboBoxLogLevel.SelectedIndexChanged += new System.EventHandler(this.ComboBoxLogLevel_SelectedIndexChanged);
//
// label32
//
this.label32.AutoSize = true;
this.label32.Location = new System.Drawing.Point(591, 835);
this.label32.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label32.Name = "label32";
this.label32.Size = new System.Drawing.Size(53, 18);
this.label32.TabIndex = 37;
this.label32.Text = "Level";
//
// comboBoxLan
//
this.comboBoxLan.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.comboBoxLan.FormattingEnabled = true;
this.comboBoxLan.Location = new System.Drawing.Point(1346, 832);
this.comboBoxLan.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.comboBoxLan.Name = "comboBoxLan";
this.comboBoxLan.Size = new System.Drawing.Size(148, 26);
this.comboBoxLan.TabIndex = 38;
this.comboBoxLan.SelectedIndexChanged += new System.EventHandler(this.ComboBoxLan_SelectedIndexChanged);
//
// label33
//
this.label33.AutoSize = true;
this.label33.Location = new System.Drawing.Point(1254, 837);
this.label33.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label33.Name = "label33";
this.label33.Size = new System.Drawing.Size(80, 18);
this.label33.TabIndex = 39;
this.label33.Text = "Language";
//
// label34
//
this.label34.Location = new System.Drawing.Point(0, 0);
this.label34.Name = "label34";
this.label34.Size = new System.Drawing.Size(100, 23);
this.label34.TabIndex = 0;
//
// comboBoxOpcItem
//
this.comboBoxOpcItem.FormattingEnabled = true;
this.comboBoxOpcItem.Location = new System.Drawing.Point(74, 117);
this.comboBoxOpcItem.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.comboBoxOpcItem.Name = "comboBoxOpcItem";
this.comboBoxOpcItem.Size = new System.Drawing.Size(228, 26);
this.comboBoxOpcItem.TabIndex = 45;
this.comboBoxOpcItem.SelectedIndexChanged += new System.EventHandler(this.ComboBoxOpcItem_SelectedIndexChanged);
//
// MainForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 18F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(60)))), ((int)(((byte)(143)))), ((int)(((byte)(178)))));
this.ClientSize = new System.Drawing.Size(1910, 872);
this.Controls.Add(this.label34);
this.Controls.Add(this.label33);
this.Controls.Add(this.comboBoxLan);
this.Controls.Add(this.label32);
this.Controls.Add(this.comboBoxLogLevel);
this.Controls.Add(this.pictureBox1);
this.Controls.Add(this.groupBox12);
this.Controls.Add(this.radioButtonUDPClient);
this.Controls.Add(this.radioButtonTcpClient);
this.Controls.Add(this.radioButtonMqttClient);
this.Controls.Add(this.groupBox10);
this.Controls.Add(this.groupBox9);
this.Controls.Add(this.groupBox8);
this.Controls.Add(this.label7);
this.Controls.Add(this.comboBoxBridge);
this.Controls.Add(this.groupBox7);
this.Controls.Add(this.groupBox6);
this.Controls.Add(this.groupBox5);
this.Controls.Add(this.groupBox4);
this.Controls.Add(this.groupBox3);
this.Controls.Add(this.groupBox2);
this.Controls.Add(this.checkBoxDisplayHex);
this.Controls.Add(this.sendBridge);
this.Controls.Add(this.textToPayload);
this.Controls.Add(this.linkLabel2);
this.Controls.Add(this.label3);
this.Controls.Add(this.groupBoxSerialPort);
this.Controls.Add(this.buttonClear);
this.Controls.Add(this.checkBoxReconnect);
this.Controls.Add(this.linkLabel1);
this.Controls.Add(this.textBoxLog);
this.Controls.Add(this.buttonStartStop);
this.ForeColor = System.Drawing.SystemColors.ControlText;
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.MaximizeBox = false;
this.Name = "MainForm";
this.Text = "dgiot_dtu";
this.groupBoxSerialPort.ResumeLayout(false);
this.groupBoxSerialPort.PerformLayout();
this.groupBox2.ResumeLayout(false);
this.groupBox2.PerformLayout();
this.groupBox3.ResumeLayout(false);
this.groupBox3.PerformLayout();
this.groupBox4.ResumeLayout(false);
this.groupBox4.PerformLayout();
this.groupBox5.ResumeLayout(false);
this.groupBox5.PerformLayout();
this.groupBox6.ResumeLayout(false);
this.groupBox6.PerformLayout();
this.groupBox7.ResumeLayout(false);
this.groupBox7.PerformLayout();
this.groupBox8.ResumeLayout(false);
this.groupBox8.PerformLayout();
this.groupBox9.ResumeLayout(false);
this.groupBox9.PerformLayout();
this.groupBox10.ResumeLayout(false);
this.groupBox10.PerformLayout();
this.groupBox12.ResumeLayout(false);
this.groupBox12.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button buttonStartStop;
private System.Windows.Forms.TextBox textBoxLog;
private System.Windows.Forms.LinkLabel linkLabel1;
private System.Windows.Forms.CheckBox checkBoxReconnect;
private System.Windows.Forms.CheckBox checkBoxDisplayHex;
private System.Windows.Forms.Button buttonClear;
private System.Windows.Forms.GroupBox groupBoxSerialPort;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.ComboBox comboBoxBaudRate;
private System.Windows.Forms.Label labelSerialPort;
private System.Windows.Forms.ComboBox comboBoxSerialPort;
private System.Windows.Forms.TextBox textBoxTcpServerPort;
private System.Windows.Forms.Label labelTargetPort;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.LinkLabel linkLabel2;
private System.Windows.Forms.Label label4;
private System.Windows.Forms.ComboBox comboBoxDataBits;
private System.Windows.Forms.Label label5;
private System.Windows.Forms.ComboBox comboBoxStopBits;
private System.Windows.Forms.TextBox textToPayload;
private System.Windows.Forms.Button sendBridge;
private System.Windows.Forms.TextBox textBoxMqttPassword;
private System.Windows.Forms.Label label10;
private System.Windows.Forms.TextBox textBoxMqttUserName;
private System.Windows.Forms.Label label9;
private System.Windows.Forms.TextBox textBoxMqttSubTopic;
private System.Windows.Forms.Label label11;
private System.Windows.Forms.Label label12;
private System.Windows.Forms.TextBox textBoxMqttPubTopic;
private System.Windows.Forms.GroupBox groupBox2;
private System.Windows.Forms.Label label16;
private System.Windows.Forms.TextBox textBoxTcpClientLogin;
private System.Windows.Forms.TextBox textBoxTcpClientPort;
private System.Windows.Forms.Label label17;
private System.Windows.Forms.TextBox textBoxTcpClientServer;
private System.Windows.Forms.Label label18;
private System.Windows.Forms.GroupBox groupBox3;
private System.Windows.Forms.Label label20;
private System.Windows.Forms.TextBox textBoxMqttClientId;
private System.Windows.Forms.TextBox textBoxMqttPort;
private System.Windows.Forms.Label label21;
private System.Windows.Forms.Label label22;
private System.Windows.Forms.CheckBox checkBoxTcpBridge;
private System.Windows.Forms.GroupBox groupBox4;
private System.Windows.Forms.Label label25;
private System.Windows.Forms.GroupBox groupBox5;
private System.Windows.Forms.TextBox textBoxOPCUATopic;
private System.Windows.Forms.Label label19;
private System.Windows.Forms.GroupBox groupBox6;
private System.Windows.Forms.TextBox textBoxBACnetTopic;
private System.Windows.Forms.Label label23;
private System.Windows.Forms.GroupBox groupBox7;
private System.Windows.Forms.TextBox textBoxControlTopic;
private System.Windows.Forms.Label label8;
private System.Windows.Forms.ComboBox comboBoxBridge;
private System.Windows.Forms.Label label7;
private System.Windows.Forms.GroupBox groupBox8;
private System.Windows.Forms.TextBox textBoxAccessTopic;
private System.Windows.Forms.Label label6;
private System.Windows.Forms.GroupBox groupBox9;
private System.Windows.Forms.TextBox textBoxSqlServerTopic;
private System.Windows.Forms.Label label14;
private System.Windows.Forms.GroupBox groupBox10;
private System.Windows.Forms.Label label15;
private System.Windows.Forms.TextBox textBoxUDPClientLogin;
private System.Windows.Forms.TextBox textBoxUDPCLientPort;
private System.Windows.Forms.Label label24;
private System.Windows.Forms.TextBox textBoxUDPClientServer;
private System.Windows.Forms.Label label26;
private System.Windows.Forms.RadioButton radioButtonMqttClient;
private System.Windows.Forms.RadioButton radioButtonTcpClient;
private System.Windows.Forms.RadioButton radioButtonUDPClient;
private System.Windows.Forms.GroupBox groupBox12;
private System.Windows.Forms.TextBox textBoxPLCTopic;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.PictureBox pictureBox1;
private System.Windows.Forms.ComboBox comboBoxParity;
private System.Windows.Forms.Label label13;
private System.Windows.Forms.CheckBox checkBoxMqttBridge;
private System.Windows.Forms.TextBox textBoxMqttServerPort;
private System.Windows.Forms.Label label27;
private System.Windows.Forms.Label label28;
private System.Windows.Forms.TextBox textBoxUdpServerPort;
private System.Windows.Forms.CheckBox checkBoxUdpBridge;
private System.Windows.Forms.Label label29;
private System.Windows.Forms.ComboBox comboBoxCmdProdxy;
private System.Windows.Forms.Label label30;
private System.Windows.Forms.ComboBox comboBoxDevAddr;
private System.Windows.Forms.TextBox textBoxOpcIp;
private System.Windows.Forms.Label label31;
private System.Windows.Forms.ComboBox comboBoxOpcServer;
private System.Windows.Forms.TextBox textBoxMqttSever;
private System.Windows.Forms.ComboBox comboBoxLogLevel;
private System.Windows.Forms.Label label32;
private System.Windows.Forms.ComboBox comboBoxLan;
private System.Windows.Forms.Label label33;
private System.Windows.Forms.Label label34;
private System.Windows.Forms.Label label36;
private System.Windows.Forms.Label label35;
private System.Windows.Forms.ComboBox comboBoxOpcGroup;
private System.Windows.Forms.ComboBox comboBoxOpcHost;
private System.Windows.Forms.ComboBox comboBoxOpcItem;
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C#
1
https://gitee.com/tmhx90775614/dgiot_dtu.git
git@gitee.com:tmhx90775614/dgiot_dtu.git
tmhx90775614
dgiot_dtu
dgiot_dtu
master

搜索帮助