0

我正在从我的 C# winforms 项目中的 .xml 文件中读取数据,但我似乎无法将正在读取的值分配给组合框。不起作用的代码在这里:

if (Reader.Name == "BaudRate")
{
    int BaudRate;
    //Reading the node.
    Reader.Read();
    //Making the Baud Rate box equal to the .xml file.
    BaudRate = int.Parse(Reader.Value);
    //Making the combo box equal to the value of the reader.
    BaudRatebx.SelectedItem = BaudRate;
    //Setting the ApplicationPort to the Reader.Value.
    MainBoxWindow.ApplicationPort.BaudRate = BaudRate;
}

虽然,我的代码运行良好。

if (Reader.Name == "Parity")
{
    //Reading the node.
    Reader.Read();
    //Making the Parity box equal to the .xml file.
    Paritybx.SelectedItem = Reader.Value;
    //Setting the ApplicationPort to the Reader.Value.
    MainBoxWindow.ApplicationPort.Parity = (Parity)Enum.Parse(typeof(Parity), Reader.Value);
}

我不完全确定发生了什么。当我运行程序时,程序Reader.Value具有正确的值,它将填充BaudRate该值,但 BaudRate 不会将该值分配给BaudRate.SelectedItem. 它只是作为一个空值出现。任何人的想法?我试过To.String()了,但没有帮助,所以我不确定发生了什么。

4

1 回答 1

2

我想知道项目类型是否是问题:

if (Reader.Name == "BaudRate")
{
    Reader.Read();
    Int32 BaudRate;
    if (Int32.TryParse(Reader.Value, out BaudRate))
    {
        BaudRatebx.SelectedItem = BaudRate.ToString();
        MainBoxWindow.ApplicationPort.BaudRate = BaudRate;
    }
}
于 2013-08-12T16:40:32.000 回答