8

我想要一个数字为 1-8 的组合框,并将所选值绑定到 int 类型的属性“NumberOfZones”。默认情况下,组合框返回字符串值,因此不能将其保存在 int 属性中。如何将其类型转换为 int。

如何设置项目并在 int 中进行选择。

   <ComboBox Background="#FFB7B39D" Height="23" Name="cboNumZones" Width="74" Margin="158,16,368,247" Grid.Row="2" SelectionChanged="cboNumZones_SelectionChanged" 
    SelectedValue="{Binding Path=NumberOfZones, Mode=TwoWay}">
   </ComboBox>
                <!--
                <ComboBoxItem >1</ComboBoxItem>
                    <ComboBoxItem >2</ComboBoxItem>
                    <ComboBoxItem >3</ComboBoxItem>
                    <ComboBoxItem >4</ComboBoxItem>
                    <ComboBoxItem >5</ComboBoxItem>
                    <ComboBoxItem >6</ComboBoxItem>
                    <ComboBoxItem >7</ComboBoxItem>
                    <ComboBoxItem >8</ComboBoxItem>
                -->

包含 NumberOfZones 属性的对象是 UserControl 的 DataContext。

非常感谢。

4

3 回答 3

18

您可以设置ItemsSource为 int 数组,然后SelectedItem将是int32类型:

<ComboBox SelectedItem="{Binding Path=NumberOfZones, Mode=TwoWay}">             
   <ComboBox.ItemsSource>
      <x:Array Type="{x:Type sys:Int32}">
         <sys:Int32>1</sys:Int32>
         <sys:Int32>2</sys:Int32>
         <sys:Int32>3</sys:Int32>
         <sys:Int32>4</sys:Int32>
         <sys:Int32>5</sys:Int32>
         <sys:Int32>6</sys:Int32>
         <sys:Int32>7</sys:Int32>
         <sys:Int32>8</sys:Int32>
      </x:Array>
   </ComboBox.ItemsSource>
</ComboBox>

为此,您需要将sys:命名空间添加到 XAML:

xmlns:sys="clr-namespace:System;assembly=mscorlib"
于 2013-08-29T11:22:26.450 回答
7

你搞错了什么 aComboBox回报。您的返回字符串值,因为那是您放入的内容。相反,如果您在声明您的属性的位置创建一个属性NumberOfZones

public ObservableCollection<int> Numbers { get; set; }

然后将数据绑定到您的ComboBox

<ComboBox ItemSource="{Binding Numbers}" Background="#FFB7B39D" Height="23" 
    Name="cboNumZones" Width="74" Margin="158,16,368,247" Grid.Row="2" 
    SelectionChanged="cboNumZones_SelectionChanged" SelectedValue="{
    Binding Path=NumberOfZones, Mode=TwoWay}">

那么您选择的号码也将是一个int

于 2013-08-29T11:24:12.800 回答
3

我知道这个问题是针对 WPF 的,但如果您在 Windows 8.1(WinRT、通用应用程序)上寻找答案,那就是:

<ComboBox SelectedItem="{Binding NumberOfZones, Mode=TwoWay}">
    <x:Int32>1</x:Int32>
    <x:Int32>2</x:Int32>
    <x:Int32>3</x:Int32>
    <x:Int32>4</x:Int32>
    <x:Int32>5</x:Int32>
</ComboBox>

鉴于

xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
于 2015-06-01T06:00:23.440 回答