而不是使用默认的telerik gridviewcombobox模板,而是要覆盖它并使用wpf原始组合框。在尝试应用数据模板之前,它完全可以正常工作。

<Telerik:GridViewComboBoxColumn
    Header="Status"
    DataMemberBinding="{Binding Status_Id}"
    ItemsSource="{Binding Statuses, Mode=TwoWay}"
    DisplayMemberPath="StatusName"
    SelectedValueMemberPath="Id">
</Telerik:GridViewComboBoxColumn>


当我尝试应用数据模板时,组合框现在显示空白值。

 <Telerik:GridViewComboBoxColumn Header="Status"
    <Telerik:GridViewComboBoxColumn.CellTemplate>
        <DataTemplate>
            <ComboBox SelectedValue="{Binding Status_Id}"
                      ItemsSource="{Binding Statuses, Mode=TwoWay}"
                      DisplayMemberPath="StatusName"
                      SelectedValuePath="Id">
            </ComboBox>
        </DataTemplate>
    </Telerik:GridViewComboBoxColumn.CellTemplate>
</Telerik:GridViewComboBoxColumn>


我设置的选定值属性值不正确吗?任何帮助将不胜感激。我想当我设置数据模板时,它遇到了错误的层。我认为它不再从Viewmodel中获取Statuss了。

最佳答案

这是我在项目中使用的模板:

资料范本

                <telerik:GridViewDataColumn Width="150" DataMemberBinding="{Binding Path=StackOptimizerSelectedRule}"
                                        Header="Rules"
                                        IsFilterable="False" IsReorderable="False">
                <telerik:GridViewDataColumn.CellTemplate>
                    <DataTemplate DataType="flowConfiguration:StackOptimizerParameterRuleTreeViewModel">
                        <TextBlock Text="{Binding StackOptimizerSelectedRule, UpdateSourceTrigger=PropertyChanged, Converter={StaticResource EnumTypeConverterKey}}"></TextBlock>
                    </DataTemplate>
                </telerik:GridViewDataColumn.CellTemplate>

                <telerik:GridViewDataColumn.CellEditTemplate>
                    <DataTemplate DataType="flowConfiguration:StackOptimizerParameterRuleTreeViewModel">
                        <ComboBox
                            ItemsSource="{Binding Source={StaticResource StackOptimizerSelectionRules}}"
                            SelectedItem="{Binding StackOptimizerSelectedRule, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}">
                            <ComboBox.ItemTemplate>
                                <DataTemplate DataType="flowConfiguration:StackOptimizerParameterRuleTreeViewModel">
                                    <TextBlock Text="{Binding Converter={StaticResource EnumTypeConverterKey}, UpdateSourceTrigger=PropertyChanged}"/>
                                </DataTemplate>
                            </ComboBox.ItemTemplate>
                        </ComboBox>
                    </DataTemplate>
                </telerik:GridViewDataColumn.CellEditTemplate>
            </telerik:GridViewDataColumn>


说明

这是两个模板。当包含单元格不在焦点中时,GridViewDataColumn.CellTemplate将可用。当包含单元格处于焦点并且用户更改其选择时,CellEditTemplate将可用。

请记住接下来的事情,您有几种方法来绑定组合的ItemsSource:


常规绑定ItemsSource="{Binding SourceCollection, UpdateSourceTrigger=PropertyChanged}"。当您的SourceCollection出现在Cell DataContext中时,请使用这种方式。
相对绑定ItemsSource="{Binding RelativeSource={RelativeSource Mode=FindAncestor, AncestorType={x:Type PutHereTheTypeOfActualParentThatHoldsDataContextYouNeed}}, Path=DataContext.SourceCollection}"。当您的SourceCollection在Parent的数据上下文中时,请使用这种方式。
来自xaml ItemsSource="{Binding Source={StaticResource SourceCollection}}"。当SourceCollection是Xaml中生成的静态集合时(例如,基于枚举类型),请使用这种方式。您需要在<SomeParentVisualAccessibleByridViewDataColumn.Resource>部分中的下一个声明。


第三个(in addition read the next article)的来源声明

<ObjectDataProvider x:Key="SourceCollection"
                            MethodName="GetValues"
                            ObjectType="{x:Type flowConfiguration:StackOptimizerSelectionRules}">
        <ObjectDataProvider.MethodParameters>
            <x:Type TypeName="flowConfiguration:StackOptimizerSelectionRules"/>
        </ObjectDataProvider.MethodParameters>
    </ObjectDataProvider>


我认为您的问题是组合的ItemsSource出价不正确,请检查输出窗口中是否有相关的绑定错误异常。让我知道您是否需要任何帮助。

问候。

08-26 03:15