如何在vb.net

时间:2015-07-27 10:38:38

标签: vb.net combobox radgridview

如何在不使用vb​​.net中的数据源的情况下手动填充Radgridview中的组合框项目我的表格中有Radgridview。(radgridview1)radgridview1包含3列和列号3是组合框类型。我想使用以下代码填充第3列中的每个组合框:UNP IPE Angle BOX Other Profile。我不知道怎么做。

1 个答案:

答案 0 :(得分:0)

您可以使用GridTemplateColumn,如下所示。

       <telerik:GridTemplateColumn ItemStyle-Wrap="true" ItemStyle-VerticalAlign="Middle"
                        ItemStyle-HorizontalAlign="center" AllowFiltering="false" HeaderStyle-HorizontalAlign="Center"
                        HeaderStyle-Width="3%" ItemStyle-Width="3%" HeaderText="Profile">
                        <ItemTemplate>
                            <telerik:RadComboBox>
                                <Items>
                                    <telerik:RadComboBoxItem Text="UNP" Value="UNP" />
                                    <telerik:RadComboBoxItem Text="IPE" Value="IPE" />
                                    <telerik:RadComboBoxItem Text="ANGLE" Value="ANGLE" />
                                    <telerik:RadComboBoxItem Text="BOX" Value="BOX" />
                                    <telerik:RadComboBoxItem Text="Other Profile" Value="OTHER" />
                                </Items>
                            </telerik:RadComboBox>
                        </ItemTemplate>
       </telerik:GridTemplateColumn>

或者您可以绑定comboBox

中的每个_ItemDataBound