我尝试将类属性StrategySubscription中的List属性SubscribedSymbols作为List的一部分绑定到Devexpress GridControl中特定列的每个单元格中的组合框,但无法使数据绑定起作用。
自动列生成器工作并将值填充到网格上。所以,我确信数据存在。
我附加了xaml代码和数据对象以及当前输出的屏幕截图。
请帮助让数据绑定正常工作?我希望SubscribedSymbols中的字符串集合填充在模板化列中每个单元格的组合框中。
P.S。:前3个网格列和关联单元绑定完全正常,唯一的问题在于将数据绑定到最后一列的每个单元格中的组合框。
public class StrategySubscription
{
public Guid StrategyId { get; set; }
public string StrategyName { get; set; }
public int CapitalAllocation { get; set; }
public List<string> SubscribedSymbols { get; set; }
public StrategySubscription(string strategyName, Guid strategyId, int capitalAllocation, List<SymbolSubscription> symbolSubscriptions)
{
StrategyName = strategyName;
StrategyId = strategyId;
CapitalAllocation = capitalAllocation;
SubscribedSymbols = symbolSubscriptions.Select(x => x.Symbol.SymbolId).ToList();
//SubscribedSymbols = String.Join(", ", symbolSubscriptions.Select(x => x.Symbol.SymbolId).OrderBy(x=>x));
}
}
<dxg:GridControl x:Name="StrategyGrid" ItemsSource="{Binding StrategySubscriptions}" AutoGenerateColumns="None">
<dxg:GridControl.Columns>
<dxg:GridColumn Header="Strategy Id" Binding="{Binding StrategyId}"/>
<dxg:GridColumn Header="Strategy Name" Binding="{Binding StrategyName}"/>
<dxg:GridColumn Header="Strategy Capitalization" Binding="{Binding CapitalAllocation}"/>
<dxg:GridColumn Header="Symbol Subscription">
<dxg:GridColumn.CellTemplate>
<DataTemplate>
<ComboBox ItemsSource="{Binding SubscribedSymbols}"/>
</DataTemplate>
</dxg:GridColumn.CellTemplate>
</dxg:GridColumn>
</dxg:GridControl.Columns>
<dxg:GridControl.View>
<dxg:TableView AllowEditing="False" AutoWidth="True" BestFitArea="All" AllowBestFit="True" ShowGroupPanel="True" ShowSearchPanelMode="Always" NavigationStyle="Row"/>
</dxg:GridControl.View>
</dxg:GridControl>
答案 0 :(得分:3)
将Data
添加到您的绑定中:
...
<dxg:GridColumn Header="Symbol Subscription">
<dxg:GridColumn.CellTemplate>
<DataTemplate>
<ComboBox ItemsSource="{Binding Data.SubscribedSymbols}"/>
</DataTemplate>
</dxg:GridColumn.CellTemplate>
</dxg:GridColumn>
...
如果您使用DE控件,则更好的选择是使用dxe:ComboBoxEdit
而不是ComboBox
。
...
<dxg:GridColumn Header="Symbol Subscription">
<dxg:GridColumn.CellTemplate>
<DataTemplate>
<dxe:ComboBoxEdit
ItemsSource="{Binding Data.SubscribedSymbols}"/>
</DataTemplate>
</dxg:GridColumn.CellTemplate>
</dxg:GridColumn>
...