or
Hi there,
We are trying to incorporate RadGridView (RadControls for WPF Q2 2008) into our solution with Blend.
However we are unable to preview the Grid and that's odd, because it does work perfectly fine when copy&pasting the XAML code into any other solution that we have tested.
We are working on a large WPF application using .NET Framework 3.5 and yes, we have added all references to Telerik dlls.
Any clues as to what is preventing the preview of of the RadGrid View from within Blend?
Thank you all.
Rafael Minuesa
DependencyObject item = e.OriginalSource as DependencyObject; |
while (!(item is GridViewCell)) |
{ |
item = VisualTreeHelper.GetParent(item); |
} |
if ((sender as ComboBox).SelectedItem != null) |
{ |
PrinterTray p = (sender as ComboBox).SelectedItem as PrinterTray; |
QueueItem q = ((item as GridViewCell).Field.Record as DataRecord).Data as QueueItem; |
q.SetPrinterTrayKeys(p.ReportServiceId, p.PrinterId, p.PrinterTrayId); |
} |
<telerik:GridViewDataColumn Width="Auto" DataType="{x:Null}" HeaderText="StatusId" UniqueName="QueueItem.Status.StatusId" /> |