而不是使用默认的telerik gridviewcombobox模板,我想覆盖它并使用wpf原始组合框。在尝试应用datatemplate之前,它完全正常。
<Telerik:GridViewComboBoxColumn
Header="Status"
DataMemberBinding="{Binding Status_Id}"
ItemsSource="{Binding Statuses, Mode=TwoWay}"
DisplayMemberPath="StatusName"
SelectedValueMemberPath="Id">
</Telerik:GridViewComboBoxColumn>
当我尝试应用datatemplate时,组合框现在显示空白值。
<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>
我是否设置了所选值属性值不正确?任何帮助将不胜感激。我想当我设置datatemplate时,它会遇到错误的层。我认为它不再从Viewmodel中获取状态。
答案 0 :(得分:3)
这是我在我的项目中使用的模板:
数据模板
<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的数据上下文中时,请使用这种方式。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 biding,检查输出窗口中是否有相关的绑定错误异常。如果您需要任何帮助,请告诉我。
问候。