0

我正在尝试将组合框添加到 Xceed WPF 数据网格,但无法将 Itemssource 绑定到组合框。这是数据网格的 xaml。

<xwpf:DataGridControl ItemsSource="{Binding SaleDetails}" AutoCreateColumns="False"  >
        <xwpf:DataGridControl.Columns>
            <xwpf:Column FieldName="Status" Title="Status" CellContentTemplate="{StaticResource colReinstatementType}" CellEditor="{StaticResource statusEditor}" />
        </xwpf:DataGridControl.Columns>
</xwpf:DataGridControl>

资源

    <UserControl.Resources>
    <DataTemplate x:Key="colReinstatementType">
            <ComboBox BorderThickness="0"
                      x:Name="cmbStatus1"
                      IsReadOnly="False"
                      IsEditable="True"
                      MinHeight="20"
                      DisplayMemberPath="part_no"
                      Text="{xwpf:CellEditorBinding NotifyOnSourceUpdated=True}"  
                      SelectedItem="{Binding Item, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}"
                      ItemsSource="{Binding AvailablePartMaterial, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}">
            </ComboBox>
        </DataTemplate>
        <xwpf:CellEditor x:Key="statusEditor">
            <xwpf:CellEditor.EditTemplate>
                <DataTemplate>
                    <ComboBox BorderThickness="0"
                              x:Name="cmbStatus"
                              IsReadOnly="False"
                              IsEditable="True"
                              MinHeight="20"
                              DisplayMemberPath="part_no"
                              Text="{xwpf:CellEditorBinding NotifyOnSourceUpdated=True}"  
                              SelectedItem="{Binding Item, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}"
                              ItemsSource="{Binding AvailablePartMaterial, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}">
                    </ComboBox>
                </DataTemplate>
            </xwpf:CellEditor.EditTemplate>
        </xwpf:CellEditor>            
     </UserControl.Resources>

Item并且AvailablePartMaterial确实存在SaleSheet于其集合绑定到数据网格的类型中。甚至Item属性确实被触发,这意味着组合框的选定项正在被绑定。但是组合框中没有显示任何数据。

4

1 回答 1

2

CellContentTemplate 仅用于显示目的。通常它用于使用诸如 TextBlock 之类的东西来显示文本。在必须使用编辑器类型的情况下(例如布尔列上的 CheckBox),您需要将其设为 ReadOnly 以避免任何不需要的问题。

在您的情况下,您有一个带有 CellEditorBinding 作为 CellContentTemplate 的 ComboBox。CellEditorBinding 仅在 CellEditor 中有效,因此如果用户使用 CellContentTemplate 的 ComboBox 编辑行的值,它不会对基础值产生影响。

对于您的绑定,请尝试以下操作:

SelectedValuePath="part_no"   // name of column used to identify which record is selected
DisplayMemberPath="part_name" // name of column used to indicate the text/value to display
SelectedValue = {xwpf:CellEditorBinding} // SelectedItem or SelectedIndex can be used instead, depending on the situation/data

关于 ItemsSource,当您在 CellEditor 的 DataTemplate 中时,您不能直接绑定到它,您需要指出它的位置。例如:

ItemsSource="{Binding Source={x:Static Application.Current}, Path=MyData}">
于 2016-06-13T15:45:16.627 回答