2

我想允许用户选择串口的波特率。我创建了一个与串口波特率绑定的文本框,如下所示,它可以工作。

<TextBox x:Name="tbbaudRate" Text="{Binding SerialPort.BaudRate}" />

我的问题是,有效波特率的集合是有限的。有效波特率为 { 75, 110, 300, 1200, 2400, 4800, 9600, 19200, 38400, 57600, 115200 }。我想将文本框更改为列出有效波特率值的组合框。

这是我所做的。

<ComboBox x:Name="tbbaudRate" Text="{Binding SerialPort.BaudRate}" >
    <ComboBoxItem Content="75"/>
    <ComboBoxItem Content="110"/>
    <ComboBoxItem Content="300"/>
    <ComboBoxItem Content="1200"/>
    <ComboBoxItem Content="2400"/>
    <ComboBoxItem Content="4800"/>
    <ComboBoxItem Content="9600"/>
    <ComboBoxItem Content="19200"/>
    <ComboBoxItem Content="38400"/>
    <ComboBoxItem Content="57600"/>
    <ComboBoxItem Content="115200"/>
</ComboBox>

虽然这可行,但我几乎没有问题。

  1. 当我第一次加载窗口时,未选择波特率的默认值(9600)。

  2. 这看起来不那么优雅。实现这一目标的最佳方法是什么?

作为参考,这是我的串口类。也像上面的代码一样丑陋。我使用 resharper 自动生成 notifypropertychange 代码。

class SerialComm : INotifyPropertyChanged
{
    private int[] ValidBaudRate = new[] { 75, 110, 300, 1200, 2400, 4800, 9600, 19200, 38400, 57600, 115200 }; //Dont know how to use this
    private int[] ValidDataBits = new[] { 5, 6, 7, 8, 9 }; //Dont know how to use this

    private SerialPort _serialPort;

    public SerialComm()
    {
        _serialPort = new SerialPort();
    }

    public SerialPort SerialPort
    {
        get { return _serialPort; }
        set
        {
            _serialPort = value;
            OnPropertyChanged("SerialPort");
            SerialPort.GetPortNames();
        }
    }

    #region Autogenerate by resharper
    public event PropertyChangedEventHandler PropertyChanged;

    [NotifyPropertyChangedInvocator]
    protected virtual void OnPropertyChanged([CallerMemberName] string propertyName = null)
    {
        PropertyChangedEventHandler handler = PropertyChanged;
        if (handler != null) handler(this, new PropertyChangedEventArgs(propertyName));
    }
    #endregion
}
4

3 回答 3

3

像这样改变你的组合框:

<ComboBox  Name="comboBox1" Width="120" 
           ItemsSource="{Binding Path=ValidBaudRateCollection}">
    <ComboBox.ItemTemplate>
        <DataTemplate>
            <Label Content="{Binding }"/>
        </DataTemplate>
    </ComboBox.ItemTemplate>
</ComboBox>

将这些添加到您的SerialComm课程中:

public ObservableCollection<int> ValidBaudRateCollection;

public SerialComm()
{
    this.ValidBaudRateCollection = new ObservableCollection<int>(this.ValidBaudRate);
    _serialPort = new SerialPort();
}

最后将这些添加到您的某处Window(例如构造函数)

SerialComm s = new SerialComm();
comboBox1.DataContext = s;
comboBox1.ItemsSource = s.ValidBaudRateCollection;
comboBox1.SelectedIndex = 6;

注意:这种方式可以绑定您的组合框值,但是将一个添加ObservableCollection到似乎在另一层中的类可能在架构上是不正确的。

于 2013-03-29T12:34:25.360 回答
1

要使“9600”成为默认波特率,您需要添加该行

myComboBox.SelectedIndex = 7;

因为 9600 排在第 7 位

希望能帮助到你...

于 2013-03-29T12:29:44.097 回答
0

旧线程,但让我走上了正确的轨道:

通过添加 SelectedValuePath="Content" 解决它,并将其保存到 SelectedValue。

<ComboBox
          SelectedValue="{Binding LaserBaudRate, UpdateSourceTrigger=PropertyChanged}"
          SelectedValuePath="Content">
    <ComboBoxItem Content="75" />
    <ComboBoxItem Content="110" />
    <ComboBoxItem Content="300" />
    <ComboBoxItem Content="1200" />
    <ComboBoxItem Content="2400" />
    <ComboBoxItem Content="4800" />
    <ComboBoxItem Content="9600" />
    <ComboBoxItem Content="19200" />
    <ComboBoxItem Content="38400" />
    <ComboBoxItem Content="57600" />
    <ComboBoxItem Content="115200" />
</ComboBox>
于 2016-02-28T11:03:39.000 回答