or
using System.Windows.Media; using Telerik.Windows.Controls; namespace DragDrop { public class OperativeResource : Resource { ... } } Visual Studio is telling me that 'Resource' exists in both Scheduler.dll and ScheduleView.dll but when I attempt to inherit from Resource using a fully qualified name...namespace DragDrop { public class OperativeResource : Telerik.Windows.Controls.ScheduleView.Resource { ... } }...it says Resource does not exist?? As you can guess I'm trying to define a class that can be used in the header of the ScheduleView and it's very important I can do this so any help is seriously appreciated. Thanks, Dan

<rad:RadRibbonComboBox Width="95" Margin="0 5 0 0" IsEditable="True" IsReadOnly="True" ItemsSource="{Binding TimeFilterFromMonitorCombo.Items}" SelectedItem="{Binding TimeFilterFromMonitorCombo.SelectedItem}" IsSynchronizedWithCurrentItem="True"> <rad:RadRibbonComboBox.ItemsPanel> <ItemsPanelTemplate> <VirtualizingStackPanel /> </ItemsPanelTemplate> </rad:RadRibbonComboBox.ItemsPanel> <rad:RadRibbonComboBox.ItemTemplate> <DataTemplate> <StackPanel Orientation="Horizontal"> <TextBlock Background="{Binding ItemBackground}" Text="{Binding MemberDisplay}" HorizontalAlignment="Stretch" /> </StackPanel> </DataTemplate> </rad:RadRibbonComboBox.ItemTemplate> </rad:RadRibbonComboBox>private void radGridView_RowEditEnded( object sender, GridViewRowEditEndedEventArgs e ){ if ( e.EditAction == GridViewEditAction.Cancel ) { return; } if ( e.EditOperationType == GridViewEditOperationType.Insert ) { //Add the new entry to the data base. DBUtility.AddEmployee( e.NewData ); }}