5

使用可能なシリアル ポートのリストを ComboBox にバインドしたいと考えています。現在、利用可能なシリアルポートを手動で追加しています。そのようです、

            foreach (string s in SerialPort.GetPortNames())
        {
            ComboBoxItem cbi = new ComboBoxItem();
            cbi.Content = s;
            myComboBox.Items.Add(cbi);
        }

myComboBox は私のコンボボックス名です。バインディングはどうすればいいですか?ありがとう。

4

1 に答える 1

13

ObjectDataProvider を使用してメソッドにバインドできます。

<Window x:Class="SerialPortBinding.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:ports="clr-namespace:System.IO.Ports;assembly=System"
        Title="MainWindow" SizeToContent="WidthAndHeight">
    <Window.Resources>
        <ObjectDataProvider ObjectType="{x:Type ports:SerialPort}" MethodName="GetPortNames" x:Key="portNames"/>
    </Window.Resources>
    <ComboBox ItemsSource="{Binding Source={StaticResource portNames}}"/>
</Window>
于 2013-03-19T09:45:34.400 に答える