如何在telerik gridview控件的同一列中显示单选按钮和数据?

时间:2019-12-06 13:34:40

标签: wpf telerik

 I am working on telerik control for WPF to show data in telerik radgridview , I need to show data in a column along with radio button so that the user can select any one of the row from the list(as shown in image)

我已经尝试过了:

          <telerik:GridViewDataColumn  x:Name="ReferenceCols" 
                UniqueName="Reference" SortingState="Ascending" DataMemberBinding="{Binding Ref, Mode=OneWay}"
                                                     DisplayIndex="0" MaxWidth="197"
                                                     Header="title"
                                                     Style="{StaticResource ReadOnlySortableFilterableGridTextColumn}">

                            <telerik:GridViewDataColumn.CellTemplate>
                                <DataTemplate>
                                    <telerik:RadRadioButton Content="{Binding Reference}" CornerRadius="20" Width="30"/>
                                </DataTemplate>
                            </telerik:GridViewDataColumn.CellTemplate>

                        </telerik:GridViewDataColumn>

但是它不能正常工作,因为telerik的单选按钮与众不同,并且它在按钮内部显示内容。请为此提供帮助

1 个答案:

答案 0 :(得分:0)

Telerik RadRadioButton控件呈现为按钮,而不是第一个屏幕快照中显示的较旧样式。

在这种情况下,我建议使用标准的WPF RadioButton控件。