public partial class MainWindow : Window
{
public MainWindow()
{
this.InitializeComponent();
SerialPort MySerialPort = new SerialPort();
txt_1.Text = MySerialPort.BaudRate.ToString();
txt_2.Text = MySerialPort.DataBits.ToString();
txt_3.Text = MySerialPort.Parity.ToString().ToUpper();
txt_4.Text = MySerialPort.StopBits.ToString().ToUpper();
txt_5.Text = MySerialPort.Handshake.ToString();
}
}
它的输出将是这样的。
然后我只修改文本框值,例如7200,7,Odd,2 & Hardware .如果单击更新按钮,这些值应该在我的系统中更改(下图)。
最后,我想在单击更新按钮后通过文本框值更改端口设置。我该怎么做。