text 绑定ItemTemplate RadComboBox代码

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了text 绑定ItemTemplate RadComboBox代码相关的知识,希望对你有一定的参考价值。

   if (e.Item is GridEditableItem && e.Item.IsInEditMode)
            {
                var item = e.Item as GridEditableItem;
                RadComboBox combo = (RadComboBox)item.FindControl("cboLandlords");
                combo.DataSource = db.Landlords.OrderBy(x => x.FirstName).Where(x => x.IsActive).ToList();
                combo.DataTextField = "FullName";
                combo.DataValueField = "Id";
                combo.DataBind();
                combo.SelectedValue = DataBinder.Eval(item.DataItem, "Id").ToString();

            }

以上是关于text 绑定ItemTemplate RadComboBox代码的主要内容,如果未能解决你的问题,请参考以下文章

GridView、ItemTemplate、DataTemplate 绑定在 C# 代码后面

C#/WPF高手进!ComboBox.ItemTemplate用TextBlock正常,用TextBox就报错!

C#/WPF高手进!ComboBox.ItemTemplate用TextBlock正常,用TextBox就报错!

WPF ComboBox ItemTemplate 绑定到字符串集合

在 Xamarin 的 ViewModel 中绑定来自 Bindablelayout.ItemTemplate 的数据

WPF绑定到Listview的Itemtemplate的可见性不起作用[重复]