or
| public SearchResultsPage(cRecordIndexObjectList[] recordIndexObjectList) |
| { |
| InitializeComponent(); |
| dt = new DataTable(); |
| General.ConvertRecordIndexObjectToTable(recordIndexObjectList, dt,null); |
| gvSearchResults.ItemsSource = dt; |
| // Hide the IsBold column |
| GridViewColumn columnBold = gvSearchResults.Columns["IsBold"]; |
| if (columnBold != null) |
| columnBold.IsVisible = false; |
| // Hide the RecordIndexObjectList object |
| GridViewColumn column = gvSearchResults.Columns["RecordIndexObjectList"]; |
| if (column != null) |
| column.IsVisible = false; |
| gvSearchResults.Visibility = Visibility.Visible; |
| lblTotal.Content = "Total Records: " + gvSearchResults.Records.Count; |
| } |
| comboBoxEditor.GotFocus += ((sender, e) => |
| { |
| PersonType personType = (PersonType)((Field)this.DataContext).Value; |
| comboBoxEditor.SelectedItem = (from PersonType item in comboBoxEditor.Items |
| where item.PersonTypeID == personType.PersonTypeID |
| select item).FirstOrDefault(); |
| }); |
| comboBoxEditor.GotFocus += ((sender, e) => |
| { |
| var person = DataContext as Person; |
| if (person != null && person.PersonType != null) |
| { |
| comboBoxEditor.SelectedItem = (from PersonType item in comboBoxEditor.Items |
| where item.PersonTypeID == person.PersonType.PersonTypeID |
| select item).FirstOrDefault(); |
| } |
| }); |

Hi,
I use VS and Blend to build a wpf application. When using Blend all of a sudden I get the following error message
The name <telerik control tab/grid> does not exist in the namespace "http://schemas.telerik.com/2008/xaml/presentation"'
I have tried Clean, re-referencing, re-build but to no avail. This error is only in design time in Blend.
any advise?
P