or
bij Telerik.Windows.Controls.ScheduleViewBase.<>c__DisplayClass1d.<GetDecorationBlocksForSlot>b__19(IGroupItemInfo info) in c:\TB\105\WPF_Scrum\Release_WPF\Sources\Development\Controls\ScheduleView\ScheduleView\Controls\ScheduleView.Helpers.cs:regel 25 bij System.Linq.Enumerable.WhereListIterator`1.MoveNext() bij System.Linq.Enumerable.<SelectManyIterator>d__14`2.MoveNext() bij System.Linq.Enumerable.<SelectManyIterator>d__14`2.MoveNext() bij Telerik.Windows.Controls.CollectionExtensions.ForEach[T](IEnumerable`1 source, Action`1 action) in c:\TB\105\WPF_Scrum\Release_WPF\Sources\Development\Controls\ScheduleView\ScheduleView\Extensions\CollectionExtensions.cs:regel 192 bij Telerik.Windows.Controls.HighlightPanel.MeasureOverride(Size availableSize) in c:\TB\105\WPF_Scrum\Release_WPF\Sources\Development\Controls\ScheduleView\ScheduleView\Selection\HighlightDecorationsPanel.cs:regel 80 bij System.Windows.FrameworkElement.MeasureCore(Size availableSize) bij System.Windows.UIElement.Measure(Size availableSize) bij System.Windows.ContextLayoutManager.UpdateLayout() bij System.Windows.ContextLayoutManager.UpdateLayoutCallback(Object arg) bij System.Windows.Media.MediaContext.InvokeOnRenderCallback.DoWork() bij System.Windows.Media.MediaContext.FireInvokeOnRenderCallbacks() bij System.Windows.Media.MediaContext.RenderMessageHandlerCore(Object resizedCompositionTarget) bij System.Windows.Media.MediaContext.RenderMessageHandler(Object resizedCompositionTarget) bij System.Windows.Threading.ExceptionWrapper.InternalRealCall(Delegate callback, Object args, Boolean isSingleParameter) bij System.Windows.Threading.ExceptionWrapper.TryCatchWhen(Object source, Delegate callback, Object args, Boolean isSingleParameter, Delegate catchHandler)
<
telerik:RadComboBox x:Name="FieldComboBox" Grid.Column="0" ItemsSource="{Binding Fields}" SelectedItem="{Binding Field,UpdateSourceTrigger=PropertyChanged, Mode=TwoWay}" />
INotifyPropertyChanged
<telerik:RadComboBox Grid.Row="2" Grid.Column="1" Width="80" Margin="0,0,10,0" HorizontalAlignment="Left" VerticalContentAlignment="Top" DisplayMemberPath="DisplayMember" ItemsSource="{Binding CurrenciesComboSource}" SelectedValue="{Binding Path=EntityToInsert.Currency, Mode=TwoWay}" SelectedValuePath="Tag.Description" Style="{StaticResource BaseRadComboBoxStyle}" /> public class ComboSourceItem { public object SelectedValue { get; set; } public string DisplayMember { get; set; } public string Description { get; set; } /// <summary> /// Use the Tag property to hold any extra data /// </summary> public object Tag { get; set; }}private T _entityToInsert;public T EntityToInsert{ get { return _entityToInsert; } set { _entityToInsert = value; RaisePropertyChanged("EntityToInsert"); }}