使用DevExpress使用垂直网格(ComboBoxEdit模板)

时间:2016-11-14 13:44:45

标签: c# wpf combobox devexpress datatemplate

我通过How to create a custom GridControl that represents columns horizontally in a way similar to the WinForms VerticalGrid control

中的示例创建了VerticalGrid

在我的情况下,我必须将其中一个属性设置为 ComboBoxEdit ,它们绑定在DataContext的Collection上。 我写的模板不能正常工作。 我尝试找到任何创建 ComboBoxEdit 的示例作为 DataTemplate ,这适用于这种情况。



        <DataTemplate x:Key="comboboxCellTemplate" x:Name="comboboxTemplete">
            <dxe:ComboBoxEdit Name="PART_Editor" 
                              ValueMember="Country" 
                              DisplayMember="Name"
                              IsTextEditable="False"
                              ItemsSource="{Binding Path=DataContext.CountriesList, Mode=OneWay, UpdateSourceTrigger=PropertyChanged}" />
        </DataTemplate>

<view:VerticalGridControl.Rows>
                <view:VerticalRowData RowName="Country" CellTemplate="{StaticResource comboboxCellTemplate}"/>
</view:VerticalGridControl.Rows>
&#13;
&#13;
&#13;

0 个答案:

没有答案