新しい RadComboBoxItem を簡単に作成し、それを RadComboBox に追加します。以下の例を参照してください。
RadComboBoxItem myItem = new RadComboBoxItem();
myItem.Text = "Select All";
myItem.Value = "SelectAll";
//Add it as the last item
myComboBox.Items.Add(myItem);
//OR
/Add it as the first item
myComboBox.Insert(0, myItem);
編集
コントロールの DataBound イベントにコードを配置して、コントロールがバインドされた後にアイテムを追加していることを確認してください。
protected void RadComboBox1_DataBound(object sender, EventArgs e)
{
var combo = (RadComboBox)sender;
combo.Items.Insert(0, new RadComboBoxItem("Select All", "SelectAll"));
}
これを適切に行う方法を説明する Telerik のドキュメントを次に示します: http://www.telerik.com/help/aspnet-ajax/combobox-insert-default-item-when-databinding.html。
注: 上記の方法が機能しない場合は、設定済みであることを確認してくださいmyComboBox.AppendDataBoundItems = true
。