コード例 #1
0
        private void but_read_Click(object sender, EventArgs e)
        {
            try
            {
                if (string.IsNullOrWhiteSpace(txt_address.Text))
                {
                    MessageBox.Show("请输入地址");
                    return;
                }
                dynamic result = null;
                if (rd_bit.Checked)
                {
                    result = client.ReadBoolean(txt_address.Text);
                }
                else if (rd_short.Checked)
                {
                    result = client.ReadInt16(txt_address.Text);
                }
                else if (rd_ushort.Checked)
                {
                    result = client.ReadUInt16(txt_address.Text);
                }
                else if (rd_int.Checked)
                {
                    result = client.ReadInt32(txt_address.Text);
                }
                else if (rd_uint.Checked)
                {
                    result = client.ReadUInt32(txt_address.Text);
                }
                else if (rd_long.Checked)
                {
                    result = client.ReadInt64(txt_address.Text);
                }
                else if (rd_ulong.Checked)
                {
                    result = client.ReadUInt64(txt_address.Text);
                }
                else if (rd_float.Checked)
                {
                    result = client.ReadFloat(txt_address.Text);
                }
                else if (rd_double.Checked)
                {
                    result = client.ReadDouble(txt_address.Text);
                }

                if (result.IsSucceed)
                {
                    AppendText($"[读取 {txt_address.Text?.Trim()} 成功]:{result.Value}");
                }
                else
                {
                    AppendText($"[读取 {txt_address.Text?.Trim()} 失败]:{result.Err}");
                }
                if (chb_show_package.Checked || (ModifierKeys & Keys.Control) == Keys.Control)
                {
                    AppendText($"[请求报文]{result.Requst}");
                    AppendText($"[响应报文]{result.Response}\r\n");
                }
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.Message);
            }
        }
コード例 #2
0
        private void but_read_Click(object sender, EventArgs e)
        {
            try
            {
                if (string.IsNullOrWhiteSpace(txt_address.Text))
                {
                    MessageBox.Show("请输入地址");
                    return;
                }
                dynamic result = null;
                if (rd_bit.Checked)
                {
                    result = client.ReadBoolean(txt_address.Text);
                }
                else if (rd_short.Checked)
                {
                    result = client.ReadInt16(txt_address.Text);
                }
                else if (rd_ushort.Checked)
                {
                    result = client.ReadUInt16(txt_address.Text);
                }
                else if (rd_int.Checked)
                {
                    result = client.ReadInt32(txt_address.Text);
                }
                else if (rd_uint.Checked)
                {
                    result = client.ReadUInt32(txt_address.Text);
                }
                else if (rd_long.Checked)
                {
                    result = client.ReadInt64(txt_address.Text);
                }
                else if (rd_ulong.Checked)
                {
                    result = client.ReadUInt64(txt_address.Text);
                }
                else if (rd_float.Checked)
                {
                    result = client.ReadFloat(txt_address.Text);
                }
                else if (rd_double.Checked)
                {
                    result = client.ReadDouble(txt_address.Text);
                }

                if (result.IsSucceed)
                {
                    AppendText($"[读取 {txt_address.Text?.Trim()} 成功]:{result.Value}\t\t耗时:{result.TimeConsuming}ms");
                }
                else
                {
                    AppendText($"[读取 {txt_address.Text?.Trim()} 失败]:{result.Err}\t\t耗时:{result.TimeConsuming}ms");
                }
                if (chb_show_package.Checked || (ModifierKeys & Keys.Control) == Keys.Control)
                {
                    AppendText($"[请求报文]{result.Requst}");
                    AppendText($"[响应报文]{result.Response}\r\n");
                }

                var config = ConnectionConfig.GetConfig();
                switch (version)
                {
                case MitsubishiVersion.A_1E:
                    config.MitsubishiA1E_IP          = txt_ip.Text;
                    config.MitsubishiA1E_Port        = txt_port.Text;
                    config.MitsubishiA1E_Address     = txt_address.Text;
                    config.MitsubishiA1E_Value       = txt_value.Text;
                    config.MitsubishiA1E_ShowPackage = chb_show_package.Checked;
                    config.MitsubishiA1E_Datatype    = string.Empty;
                    if (rd_bit.Checked)
                    {
                        config.MitsubishiA1E_Datatype = "rd_bit";
                    }
                    else if (rd_short.Checked)
                    {
                        config.MitsubishiA1E_Datatype = "rd_short";
                    }
                    else if (rd_ushort.Checked)
                    {
                        config.MitsubishiA1E_Datatype = "rd_ushort";
                    }
                    else if (rd_int.Checked)
                    {
                        config.MitsubishiA1E_Datatype = "rd_int";
                    }
                    else if (rd_uint.Checked)
                    {
                        config.MitsubishiA1E_Datatype = "rd_uint";
                    }
                    else if (rd_long.Checked)
                    {
                        config.MitsubishiA1E_Datatype = "rd_long";
                    }
                    else if (rd_ulong.Checked)
                    {
                        config.MitsubishiA1E_Datatype = "rd_ulong";
                    }
                    else if (rd_float.Checked)
                    {
                        config.MitsubishiA1E_Datatype = "rd_float";
                    }
                    else if (rd_double.Checked)
                    {
                        config.MitsubishiA1E_Datatype = "rd_double";
                    }
                    break;

                case MitsubishiVersion.Qna_3E:
                    config.MitsubishiQna3E_IP          = txt_ip.Text;
                    config.MitsubishiQna3E_Port        = txt_port.Text;
                    config.MitsubishiQna3E_Address     = txt_address.Text;
                    config.MitsubishiQna3E_Value       = txt_value.Text;
                    config.MitsubishiQna3E_ShowPackage = chb_show_package.Checked;
                    config.MitsubishiQna3E_Datatype    = string.Empty;
                    if (rd_bit.Checked)
                    {
                        config.MitsubishiQna3E_Datatype = "rd_bit";
                    }
                    else if (rd_short.Checked)
                    {
                        config.MitsubishiQna3E_Datatype = "rd_short";
                    }
                    else if (rd_ushort.Checked)
                    {
                        config.MitsubishiQna3E_Datatype = "rd_ushort";
                    }
                    else if (rd_int.Checked)
                    {
                        config.MitsubishiQna3E_Datatype = "rd_int";
                    }
                    else if (rd_uint.Checked)
                    {
                        config.MitsubishiQna3E_Datatype = "rd_uint";
                    }
                    else if (rd_long.Checked)
                    {
                        config.MitsubishiQna3E_Datatype = "rd_long";
                    }
                    else if (rd_ulong.Checked)
                    {
                        config.MitsubishiQna3E_Datatype = "rd_ulong";
                    }
                    else if (rd_float.Checked)
                    {
                        config.MitsubishiQna3E_Datatype = "rd_float";
                    }
                    else if (rd_double.Checked)
                    {
                        config.MitsubishiQna3E_Datatype = "rd_double";
                    }
                    break;
                }
                config.SaveConfig();
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.Message);
            }
        }