如何在wpf中将组合框与组合框结合

时间:2012-11-24 20:11:38

标签: c# wpf binding .net-4.0 combobox

我有两个Combobox

<ComboBox x:Name="sourceNumber">
    <ComboBoxItem Content="1"/>
    <ComboBoxItem Content="2"/>
    <ComboBoxItem Content="3"/>
    <ComboBoxItem Content="4"/>
    <ComboBoxItem Content="5"/>

<ComboBox x:Name=destinationNumber ItemsSource="{Binding Source={sourceNumber.SelectedIndex}"/>

当我选择sourceNumber = 3(1,2,3)时,我会将destinationNumber添加到sourceNumber = 5 当我选择destinationNumber(1,2,3,4,5)时会添加到{{1}}

我该怎么办?谢谢你的帮助。

1 个答案:

答案 0 :(得分:0)

您可以使用转换器来解决此问题。

public class ComboBoxItemsSourceConverter : IValueConverter
    {
        public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
        {
            if(value != null && value is int)
            {
                int max = (int)value;
                if (max == -1) return null;
                return Enumerable.Range(1, max + 1);
            }
            else
                return null;
        }

        public object ConvertBack(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
        {
            throw new NotImplementedException();
        }
    }

您必须稍微更改您的XAML代码:

<ComboBox x:Name="destinationNumber" 
                  ItemsSource="{Binding Path=SelectedIndex, ElementName=sourceNumber, Converter={StaticResource myConverter}}"/>

myConverter的位置:

<local:ComboBoxItemsSourceConverter x:Key="myConverter" />