This question is locked. New answers and comments are not allowed.
Keith Stephens
Top achievements
Rank 1
Keith Stephens
asked on 24 Aug 2010, 02:37 PM
Hello all,
I am using VS 2008 and Silverlight 3. The Telerik controls are Silverlight Q1 2010 SP2.
My application uses WCF. WIth the Gridview on my RowEditEnded event, I will call my WCF service passing to it my collection object.
When I edit a row, my service gets called and everything is fine, but if I add a new row to the gridview and this event fires it does not seem to call my service, it just hangs and then I get a the stack over flow error.
Any help or suggestions would be appritiated.
Keith.
I am using VS 2008 and Silverlight 3. The Telerik controls are Silverlight Q1 2010 SP2.
My application uses WCF. WIth the Gridview on my RowEditEnded event, I will call my WCF service passing to it my collection object.
When I edit a row, my service gets called and everything is fine, but if I add a new row to the gridview and this event fires it does not seem to call my service, it just hangs and then I get a the stack over flow error.
Any help or suggestions would be appritiated.
Keith.
6 Answers, 1 is accepted
0
Hello Keith Stephens,
Sincerely yours,
Milan
the Telerik team
Upgrading to our latest Internal build from last Friday should resolve the problem.
Sincerely yours,
Milan
the Telerik team
Do you want to have your say when we set our development plans?
Do you want to know when a feature you care about is added or when a bug fixed?
Explore the
Telerik Public Issue Tracking
system and vote to affect the priority of the items
0
Keith Stephens
Top achievements
Rank 1
answered on 24 Aug 2010, 04:36 PM
No joy I upgraded to 2010.2.812.1030 and I still get the same error.
Sometimes it works and others I get this stack flow error. And only when I am adding a new row.
Below is my RowEditEnded event. and it gets down to
Sometimes it works and others I get this stack flow error. And only when I am adding a new row.
Below is my RowEditEnded event. and it gets down to
proxy.UpdAgtAgreementAsync then it just hangs, The call UpdAgtAgreementAsync never gets called and I can't step into it.private void gdvTshipRates_RowEditEnded(object sender, GridViewRowEditEndedEventArgs e) { if (e.EditAction == GridViewEditAction.Commit) { AgreementServiceClient proxy = new AgreementServiceClient(); AATshipAgree AgtAgreement = new AATshipAgree(); AgtAgreement = (AATshipAgree)e.NewData; string PCode = string.Empty; int PNum = 0; foreach (AgentAgreement agreement in AgreementList) { if (agreement.AgreementNum == selectedAgreementNum) { if (String.IsNullOrEmpty(AgreementLastUpdate) || AgreementLastUpdate == "0") { AgreementLastUpdate = agreement.LastUpdate; } PCode = agreement.Port.PortCode; PNum = agreement.Port.PortID; break; } } proxy.UpdAgtAgreementCompleted += new EventHandler<UpdAgtAgreementCompletedEventArgs>(proxy_UpdAgtAgreementCompleted); proxy.UpdAgtAgreementAsync(AgtAgreement, AgreementLastUpdate, selectedAgreementNum, lstDeletedRates, PNum); } }0
Keith Stephens
Top achievements
Rank 1
answered on 24 Aug 2010, 09:20 PM
Here is one of my other gridviews that have the same stackoverflow error on Inserts only.
It does not matter if I do e.NewObject = myobject in the AddingNewDataItem or not.
And yes in my code behind for event RowEditEnded I am passing into my wcf service a List<> of one item.
code behind
It does not matter if I do e.NewObject = myobject in the AddingNewDataItem or not.
And yes in my code behind for event RowEditEnded I am passing into my wcf service a List<> of one item.
<StackPanel Orientation="Vertical"> <TextBlock Text="Container Costs" Width="500" Margin="0,0,10,0" FontSize="14" FontWeight="Bold"/> <telerikGridView:RadGridView x:Name="gdvContCost" DataLoadMode="Asynchronous" CanUserDeleteRows="True" CanUserInsertRows="True" ShowInsertRow="True" RowEditEnded="gdvContCost_RowEditEnded" AddingNewDataItem="gdvContCost_AddingNewDataItem" AutoGenerateColumns="False" ItemsSource="{Binding ContChgs, Mode=TwoWay}" ShowGroupPanel="False" IsFilteringAllowed="False" Width="510" Margin="0,0,10,0" FontFamily="Arial Narrow" FontSize="14" EnableColumnVirtualization="True" EnableRowVirtualization="True" > <telerikGridView:RadGridView.Columns> <telerikGridView:GridViewDataColumn DataMemberBinding="{Binding Code, Mode=TwoWay}" Header="Code" /> <telerikGridView:GridViewDataColumn DataMemberBinding="{Binding Description, Mode=TwoWay}" Header="Charge" /> <telerikGridView:GridViewDataColumn DataMemberBinding="{Binding PayorType, Mode=TwoWay}" Header="Type" /> <telerikGridView:GridViewDataColumn DataMemberBinding="{Binding Rate, Mode=TwoWay}" Header="Rate" DataFormatString="{}{0:0.00}" /> <telerikGridView:GridViewDataColumn DataMemberBinding="{Binding Basis, Mode=TwoWay}" Header="Basis" /> <telerikGridView:GridViewDataColumn DataMemberBinding="{Binding Min, Mode=TwoWay, Converter={StaticResource converter}}" Header="Min" /> <telerikGridView:GridViewDataColumn DataMemberBinding="{Binding Max, Mode=TwoWay, Converter={StaticResource converter}}" Header="Max" /> <telerikGridView:GridViewDataColumn DataMemberBinding="{Binding FCLFAK, Mode=TwoWay}" Header="FCLFAK" /> <telerikGridView:GridViewDataColumn DataMemberBinding="{Binding Tier, Mode=TwoWay}" Header="Tier" /> <!--<telerikGridView:GridViewDataColumn DataMemberBinding="{Binding Status}" Header="Status" />--> </telerikGridView:RadGridView.Columns> </telerikGridView:RadGridView> <!-- Container Cost Grid --> </StackPanel>private void gdvContCost_RowEditEnded(object sender, GridViewRowEditEndedEventArgs e) { if (e.EditAction == GridViewEditAction.Commit) { AgreementServiceClient proxy = new AgreementServiceClient(); ObservableCollection<AAContCharge> aaCont = new ObservableCollection<AAContCharge>(); aaCont.Add((AAContCharge)e.NewData); // string x = "STOP"; proxy.UpdContainerChargesCompleted += new EventHandler<UpdContainerChargesCompletedEventArgs>(proxy_UpdContainerChargesCompleted); proxy.UpdContainerChargesAsync(aaCont, AgreementLastUpdate, selectedAgreementNum); } } private void gdvContCost_AddingNewDataItem(object sender, GridViewAddingNewEventArgs e) { }0
Hello Keith Stephens,
Could you send me the stack trace from this stack overflow error?
As I see the code inside RowEditEnded event handler, covers only update (edit) scenario. Could you confirm that same UpdAgtAgreementAsync() call is safe in INSERT case? You can get if this is an insert operation by e. EditOperationType property.
Regards,
Nedyalko Nikolov
the Telerik team
Could you send me the stack trace from this stack overflow error?
As I see the code inside RowEditEnded event handler, covers only update (edit) scenario. Could you confirm that same UpdAgtAgreementAsync() call is safe in INSERT case? You can get if this is an insert operation by e. EditOperationType property.
Regards,
Nedyalko Nikolov
the Telerik team
Do you want to have your say when we set our development plans?
Do you want to know when a feature you care about is added or when a bug fixed?
Explore the
Telerik Public Issue Tracking
system and vote to affect the priority of the items
0
Keith Stephens
Top achievements
Rank 1
answered on 27 Aug 2010, 01:41 PM
I believe this is it. Also I am calling
Am I wrong at doing this?
if
(e.EditAction == GridViewEditAction.Commit) rather than
if (e.EditOperationType == GridViewEditOperationType.Insert).
Either call gets me into the if for my wcf call, where I will then do an update or an insert into my DB.Am I wrong at doing this?
> mscorlib.dll!System.Collections.Generic.List<object>.Capacity.set(int value = 16) + 0xaf bytes mscorlib.dll!System.Collections.Generic.List<object>.EnsureCapacity(int min = 9) + 0x76 bytes mscorlib.dll!System.Collections.Generic.List<object>.Add(object item = {System.RuntimeTypeHandle}) + 0x45 bytes mscorlib.dll!System.Reflection.Emit.DynamicScope.GetTokenFor(System.RuntimeTypeHandle type = {System.RuntimeTypeHandle}) + 0x57 bytes mscorlib.dll!System.Reflection.Emit.DynamicResolver.ParentToken(int token = 100663300) + 0x341 bytes [Managed to Native Transition] mscorlib.dll!System.Reflection.Emit.DynamicMethod.CreateDelegate(System.Type delegateType = {System.RuntimeType}, object target = {System.Runtime.CompilerServices.ExecutionScope}) + 0x5e bytes System.Core.dll!System.Linq.Expressions.ExpressionCompiler.CompileDynamicLambda(System.Linq.Expressions.LambdaExpression lambda = {System.Linq.Expressions.Expression<System.Func<object,object>>}) + 0x143 bytes System.Core.dll!System.Linq.Expressions.ExpressionCompiler.Compile(System.Linq.Expressions.LambdaExpression lambda = {System.Linq.Expressions.Expression<System.Func<object,object>>}) + 0x30 bytes System.Core.dll!System.Linq.Expressions.LambdaExpression.Compile() + 0x4c bytes System.Core.dll!System.Linq.Expressions.Expression<System.Func<object,object>>.Compile() + 0x25 bytes System.Core.dll!System.Linq.Expressions.ExpressionCompiler.AddGlobal(System.Type type = {System.RuntimeType}, object value = {Telerik.Windows.Data.QueryableCollectionView}) + 0x186 bytes System.Core.dll!System.Linq.Expressions.ExpressionCompiler.GenerateConstant(System.Reflection.Emit.ILGenerator gen = {System.Reflection.Emit.DynamicILGenerator}, System.Type type = {System.RuntimeType}, object value = {Telerik.Windows.Data.QueryableCollectionView}, System.Linq.Expressions.ExpressionCompiler.StackType ask = Value) + 0x467 bytes System.Core.dll!System.Linq.Expressions.ExpressionCompiler.GenerateConstant(System.Reflection.Emit.ILGenerator gen = {System.Reflection.Emit.DynamicILGenerator}, System.Linq.Expressions.ConstantExpression c = {System.Linq.Expressions.ConstantExpression}, System.Linq.Expressions.ExpressionCompiler.StackType ask = Value) + 0x63 bytes System.Core.dll!System.Linq.Expressions.ExpressionCompiler.Generate(System.Reflection.Emit.ILGenerator gen = {System.Reflection.Emit.DynamicILGenerator}, System.Linq.Expressions.Expression node = {System.Linq.Expressions.ConstantExpression}, System.Linq.Expressions.ExpressionCompiler.StackType ask = Value) + 0x15c bytes System.Core.dll!System.Linq.Expressions.ExpressionCompiler.GenerateMemberAccess(System.Reflection.Emit.ILGenerator gen = {System.Reflection.Emit.DynamicILGenerator}, System.Linq.Expressions.Expression expression = {System.Linq.Expressions.ConstantExpression}, System.Reflection.MemberInfo member = {System.Reflection.RuntimePropertyInfo}, System.Linq.Expressions.ExpressionCompiler.StackType ask = Value) + 0x24b bytes System.Core.dll!System.Linq.Expressions.ExpressionCompiler.GenerateMemberAccess(System.Reflection.Emit.ILGenerator gen = {System.Reflection.Emit.DynamicILGenerator}, System.Linq.Expressions.MemberExpression m = {System.Linq.Expressions.MemberExpression}, System.Linq.Expressions.ExpressionCompiler.StackType ask = Value) + 0x64 bytes System.Core.dll!System.Linq.Expressions.ExpressionCompiler.Generate(System.Reflection.Emit.ILGenerator gen = {System.Reflection.Emit.DynamicILGenerator}, System.Linq.Expressions.Expression node = {System.Linq.Expressions.MemberExpression}, System.Linq.Expressions.ExpressionCompiler.StackType ask = Value) + 0x22b bytes System.Core.dll!System.Linq.Expressions.ExpressionCompiler.GenerateConvert(System.Reflection.Emit.ILGenerator gen = {System.Reflection.Emit.DynamicILGenerator}, System.Linq.Expressions.UnaryExpression u = {System.Linq.Expressions.UnaryExpression}) + 0x276 bytes System.Core.dll!System.Linq.Expressions.ExpressionCompiler.Generate(System.Reflection.Emit.ILGenerator gen = {System.Reflection.Emit.DynamicILGenerator}, System.Linq.Expressions.Expression node = {System.Linq.Expressions.UnaryExpression}, System.Linq.Expressions.ExpressionCompiler.StackType ask = Value) + 0x2f3 bytes System.Core.dll!System.Linq.Expressions.ExpressionCompiler.GenerateLambda(System.Linq.Expressions.LambdaExpression lambda = {System.Linq.Expressions.Expression<System.Func<object>>}) + 0x160 bytes System.Core.dll!System.Linq.Expressions.ExpressionCompiler.CompileDynamicLambda(System.Linq.Expressions.LambdaExpression lambda = {System.Linq.Expressions.Expression<System.Func<object>>}) + 0x8d bytes System.Core.dll!System.Linq.Expressions.ExpressionCompiler.Compile(System.Linq.Expressions.LambdaExpression lambda = {System.Linq.Expressions.Expression<System.Func<object>>}) + 0x30 bytes System.Core.dll!System.Linq.Expressions.LambdaExpression.Compile() + 0x4c bytes System.Core.dll!System.Linq.Expressions.Expression<System.Func<object>>.Compile() + 0x25 bytes Telerik.Windows.Data!Telerik.Windows.Data.Common.PropertyChangeInfo.AddProperty(System.Linq.Expressions.Expression<System.Func<object>> propertyAccess = {System.Linq.Expressions.Expression<System.Func<object>>}) + 0x63 bytes Telerik.Windows.Data!Telerik.Windows.Data.Common.PropertyChangeInfo.AddProperties(System.Linq.Expressions.Expression<System.Func<object>>[] properies = {System.Linq.Expressions.Expression<System.Func<object>>[2]}) + 0x5a bytes Telerik.Windows.Data!Telerik.Windows.Data.Common.PropertyChangeInfo.PropertyChangeInfo(System.Linq.Expressions.Expression<System.Func<object>>[] properies = {System.Linq.Expressions.Expression<System.Func<object>>[2]}) + 0x98 bytes Telerik.Windows.Data!Telerik.Windows.Data.QueryableCollectionView.MoveCurrentToPositionCore(int position = 0) + 0x1e5 bytes Telerik.Windows.Data!Telerik.Windows.Data.QueryableCollectionView.MoveCurrentToPosition(int position = 0) + 0xe4 bytes Telerik.Windows.Data!Telerik.Windows.Data.QueryableCollectionView.MoveCurrentTo(object item = {Agreement.AgreementSer.AAContCharge}) + 0x4a bytes Telerik.Windows.Data!Telerik.Windows.Data.DataItemCollection.MoveCurrentTo(object item = {Agreement.AgreementSer.AAContCharge}) + 0x56 bytes Telerik.Windows.Data!Telerik.Windows.Data.Selection.ItemSelectionHandler.SetCurrentItem(object item = {Agreement.AgreementSer.AAContCharge}) + 0x62 bytes Telerik.Windows.Data!Telerik.Windows.Controls.DataControl.CurrentItemChanged(System.Windows.DependencyObject d = {Telerik.Windows.Controls.RadGridView}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0xc3 bytes Telerik.Windows.Controls!Telerik.Windows.PropertyMetadata.Create.AnonymousMethod(System.Windows.DependencyObject d = {Telerik.Windows.Controls.RadGridView}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x266 bytes System.Windows.dll!System.Windows.DependencyObject.RaisePropertyChangeNotifications(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object newValue = {Agreement.AgreementSer.AAContCharge}, object oldValue = {Agreement.AgreementSer.AAContCharge}) + 0xb0 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = {Agreement.AgreementSer.AAContCharge}, bool allowReadOnlySet = false, bool isSetByStyle = false, bool isSetByBuiltInStyle = false, System.Windows.PropertyInvalidationReason reason = SetValue) + 0xb06 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = {Agreement.AgreementSer.AAContCharge}) + 0x31 bytes System.Windows.dll!System.Windows.DependencyObject.SetValue(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = {Agreement.AgreementSer.AAContCharge}) + 0x29 bytes Telerik.Windows.Data!Telerik.Windows.Controls.DataControl.CurrentItem.set(object value = {Agreement.AgreementSer.AAContCharge}) + 0x2b bytes Telerik.Windows.Data!Telerik.Windows.Data.Selection.ItemSelectionHandler.SynchronizePublicCurrentItem() + 0x86 bytes Telerik.Windows.Data!Telerik.Windows.Data.Selection.ItemSelectionHandler.SetCurrentItem(object item = {Agreement.AgreementSer.AAContCharge}) + 0x49 bytes Telerik.Windows.Data!Telerik.Windows.Controls.DataControl.CurrentItemChanged(System.Windows.DependencyObject d = {Telerik.Windows.Controls.RadGridView}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0xc3 bytes Telerik.Windows.Controls!Telerik.Windows.PropertyMetadata.Create.AnonymousMethod(System.Windows.DependencyObject d = {Telerik.Windows.Controls.RadGridView}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x266 bytes System.Windows.dll!System.Windows.DependencyObject.RaisePropertyChangeNotifications(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object newValue = {Agreement.AgreementSer.AAContCharge}, object oldValue = {Agreement.AgreementSer.AAContCharge}) + 0xb0 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = {Agreement.AgreementSer.AAContCharge}, bool allowReadOnlySet = false, bool isSetByStyle = false, bool isSetByBuiltInStyle = false, System.Windows.PropertyInvalidationReason reason = SetValue) + 0xb06 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = {Agreement.AgreementSer.AAContCharge}) + 0x31 bytes System.Windows.dll!System.Windows.DependencyObject.SetValue(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = {Agreement.AgreementSer.AAContCharge}) + 0x29 bytes Telerik.Windows.Data!Telerik.Windows.Controls.DataControl.CurrentItem.set(object value = {Agreement.AgreementSer.AAContCharge}) + 0x2b bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.OnCurrentCellInfoChanged(Telerik.Windows.Controls.GridViewCellInfo currentCell = {Telerik.Windows.Controls.GridViewCellInfo}) + 0x8e bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.CurrentCellInfo.set(Telerik.Windows.Controls.GridViewCellInfo value = {Telerik.Windows.Controls.GridViewCellInfo}) + 0xf9 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrentChanged(System.Windows.DependencyObject dependencyObject = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x115 bytes Telerik.Windows.Controls!Telerik.Windows.PropertyMetadata.Create.AnonymousMethod(System.Windows.DependencyObject d = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x266 bytes System.Windows.dll!System.Windows.DependencyObject.RaisePropertyChangeNotifications(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object newValue = true, object oldValue = false) + 0xb0 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true, bool allowReadOnlySet = false, bool isSetByStyle = false, bool isSetByBuiltInStyle = false, System.Windows.PropertyInvalidationReason reason = SetValue) + 0xb06 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x31 bytes System.Windows.dll!System.Windows.DependencyObject.SetValue(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x29 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrent.set(bool value = true) + 0x58 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewRow.UpdateCurrentCell() + 0xc3 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.OnCurrentCellInfoChanged(Telerik.Windows.Controls.GridViewCellInfo currentCell = {Telerik.Windows.Controls.GridViewCellInfo}) + 0x11f bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.CurrentCellInfo.set(Telerik.Windows.Controls.GridViewCellInfo value = {Telerik.Windows.Controls.GridViewCellInfo}) + 0xf9 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrentChanged(System.Windows.DependencyObject dependencyObject = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x115 bytes Telerik.Windows.Controls!Telerik.Windows.PropertyMetadata.Create.AnonymousMethod(System.Windows.DependencyObject d = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x266 bytes System.Windows.dll!System.Windows.DependencyObject.RaisePropertyChangeNotifications(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object newValue = true, object oldValue = false) + 0xb0 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true, bool allowReadOnlySet = false, bool isSetByStyle = false, bool isSetByBuiltInStyle = false, System.Windows.PropertyInvalidationReason reason = SetValue) + 0xb06 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x31 bytes System.Windows.dll!System.Windows.DependencyObject.SetValue(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x29 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrent.set(bool value = true) + 0x58 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewRow.UpdateCurrentCell() + 0xc3 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.OnCurrentCellInfoChanged(Telerik.Windows.Controls.GridViewCellInfo currentCell = {Telerik.Windows.Controls.GridViewCellInfo}) + 0x11f bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.CurrentCellInfo.set(Telerik.Windows.Controls.GridViewCellInfo value = {Telerik.Windows.Controls.GridViewCellInfo}) + 0xf9 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrentChanged(System.Windows.DependencyObject dependencyObject = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x115 bytes Telerik.Windows.Controls!Telerik.Windows.PropertyMetadata.Create.AnonymousMethod(System.Windows.DependencyObject d = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x266 bytes System.Windows.dll!System.Windows.DependencyObject.RaisePropertyChangeNotifications(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object newValue = true, object oldValue = false) + 0xb0 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true, bool allowReadOnlySet = false, bool isSetByStyle = false, bool isSetByBuiltInStyle = false, System.Windows.PropertyInvalidationReason reason = SetValue) + 0xb06 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x31 bytes System.Windows.dll!System.Windows.DependencyObject.SetValue(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x29 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrent.set(bool value = true) + 0x58 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewRow.UpdateCurrentCell() + 0xc3 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.OnCurrentCellInfoChanged(Telerik.Windows.Controls.GridViewCellInfo currentCell = {Telerik.Windows.Controls.GridViewCellInfo}) + 0x11f bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.CurrentCellInfo.set(Telerik.Windows.Controls.GridViewCellInfo value = {Telerik.Windows.Controls.GridViewCellInfo}) + 0xf9 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrentChanged(System.Windows.DependencyObject dependencyObject = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x115 bytes Telerik.Windows.Controls!Telerik.Windows.PropertyMetadata.Create.AnonymousMethod(System.Windows.DependencyObject d = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x266 bytes System.Windows.dll!System.Windows.DependencyObject.RaisePropertyChangeNotifications(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object newValue = true, object oldValue = false) + 0xb0 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true, bool allowReadOnlySet = false, bool isSetByStyle = false, bool isSetByBuiltInStyle = false, System.Windows.PropertyInvalidationReason reason = SetValue) + 0xb06 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x31 bytes System.Windows.dll!System.Windows.DependencyObject.SetValue(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x29 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrent.set(bool value = true) + 0x58 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewRow.UpdateCurrentCell() + 0xc3 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.OnCurrentCellInfoChanged(Telerik.Windows.Controls.GridViewCellInfo currentCell = {Telerik.Windows.Controls.GridViewCellInfo}) + 0x11f bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.CurrentCellInfo.set(Telerik.Windows.Controls.GridViewCellInfo value = {Telerik.Windows.Controls.GridViewCellInfo}) + 0xf9 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrentChanged(System.Windows.DependencyObject dependencyObject = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x115 bytes Telerik.Windows.Controls!Telerik.Windows.PropertyMetadata.Create.AnonymousMethod(System.Windows.DependencyObject d = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x266 bytes System.Windows.dll!System.Windows.DependencyObject.RaisePropertyChangeNotifications(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object newValue = true, object oldValue = false) + 0xb0 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true, bool allowReadOnlySet = false, bool isSetByStyle = false, bool isSetByBuiltInStyle = false, System.Windows.PropertyInvalidationReason reason = SetValue) + 0xb06 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x31 bytes System.Windows.dll!System.Windows.DependencyObject.SetValue(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x29 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrent.set(bool value = true) + 0x58 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewRow.UpdateCurrentCell() + 0xc3 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.OnCurrentCellInfoChanged(Telerik.Windows.Controls.GridViewCellInfo currentCell = {Telerik.Windows.Controls.GridViewCellInfo}) + 0x11f bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.CurrentCellInfo.set(Telerik.Windows.Controls.GridViewCellInfo value = {Telerik.Windows.Controls.GridViewCellInfo}) + 0xf9 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrentChanged(System.Windows.DependencyObject dependencyObject = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x115 bytes Telerik.Windows.Controls!Telerik.Windows.PropertyMetadata.Create.AnonymousMethod(System.Windows.DependencyObject d = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x266 bytes System.Windows.dll!System.Windows.DependencyObject.RaisePropertyChangeNotifications(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object newValue = true, object oldValue = false) + 0xb0 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true, bool allowReadOnlySet = false, bool isSetByStyle = false, bool isSetByBuiltInStyle = false, System.Windows.PropertyInvalidationReason reason = SetValue) + 0xb06 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x31 bytes System.Windows.dll!System.Windows.DependencyObject.SetValue(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x29 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrent.set(bool value = true) + 0x58 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewRow.UpdateCurrentCell() + 0xc3 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.OnCurrentCellInfoChanged(Telerik.Windows.Controls.GridViewCellInfo currentCell = {Telerik.Windows.Controls.GridViewCellInfo}) + 0x11f bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.CurrentCellInfo.set(Telerik.Windows.Controls.GridViewCellInfo value = {Telerik.Windows.Controls.GridViewCellInfo}) + 0xf9 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrentChanged(System.Windows.DependencyObject dependencyObject = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x115 bytes Telerik.Windows.Controls!Telerik.Windows.PropertyMetadata.Create.AnonymousMethod(System.Windows.DependencyObject d = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x266 bytes System.Windows.dll!System.Windows.DependencyObject.RaisePropertyChangeNotifications(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object newValue = true, object oldValue = false) + 0xb0 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true, bool allowReadOnlySet = false, bool isSetByStyle = false, bool isSetByBuiltInStyle = false, System.Windows.PropertyInvalidationReason reason = SetValue) + 0xb06 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x31 bytes System.Windows.dll!System.Windows.DependencyObject.SetValue(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x29 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrent.set(bool value = true) + 0x58 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewRow.UpdateCurrentCell() + 0xc3 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.OnCurrentCellInfoChanged(Telerik.Windows.Controls.GridViewCellInfo currentCell = {Telerik.Windows.Controls.GridViewCellInfo}) + 0x11f bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.CurrentCellInfo.set(Telerik.Windows.Controls.GridViewCellInfo value = {Telerik.Windows.Controls.GridViewCellInfo}) + 0xf9 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrentChanged(System.Windows.DependencyObject dependencyObject = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x115 bytes Telerik.Windows.Controls!Telerik.Windows.PropertyMetadata.Create.AnonymousMethod(System.Windows.DependencyObject d = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x266 bytes System.Windows.dll!System.Windows.DependencyObject.RaisePropertyChangeNotifications(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object newValue = true, object oldValue = false) + 0xb0 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true, bool allowReadOnlySet = false, bool isSetByStyle = false, bool isSetByBuiltInStyle = false, System.Windows.PropertyInvalidationReason reason = SetValue) + 0xb06 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x31 bytes System.Windows.dll!System.Windows.DependencyObject.SetValue(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x29 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrent.set(bool value = true) + 0x58 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewRow.UpdateCurrentCell() + 0xc3 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.OnCurrentCellInfoChanged(Telerik.Windows.Controls.GridViewCellInfo currentCell = {Telerik.Windows.Controls.GridViewCellInfo}) + 0x11f bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.CurrentCellInfo.set(Telerik.Windows.Controls.GridViewCellInfo value = {Telerik.Windows.Controls.GridViewCellInfo}) + 0xf9 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrentChanged(System.Windows.DependencyObject dependencyObject = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x115 bytes Telerik.Windows.Controls!Telerik.Windows.PropertyMetadata.Create.AnonymousMethod(System.Windows.DependencyObject d = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x266 bytes System.Windows.dll!System.Windows.DependencyObject.RaisePropertyChangeNotifications(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object newValue = true, object oldValue = false) + 0xb0 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true, bool allowReadOnlySet = false, bool isSetByStyle = false, bool isSetByBuiltInStyle = false, System.Windows.PropertyInvalidationReason reason = SetValue) + 0xb06 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x31 bytes System.Windows.dll!System.Windows.DependencyObject.SetValue(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x29 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrent.set(bool value = true) + 0x58 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewRow.UpdateCurrentCell() + 0xc3 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.OnCurrentCellInfoChanged(Telerik.Windows.Controls.GridViewCellInfo currentCell = {Telerik.Windows.Controls.GridViewCellInfo}) + 0x11f bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.CurrentCellInfo.set(Telerik.Windows.Controls.GridViewCellInfo value = {Telerik.Windows.Controls.GridViewCellInfo}) + 0xf9 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrentChanged(System.Windows.DependencyObject dependencyObject = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x115 bytes Telerik.Windows.Controls!Telerik.Windows.PropertyMetadata.Create.AnonymousMethod(System.Windows.DependencyObject d = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x266 bytes System.Windows.dll!System.Windows.DependencyObject.RaisePropertyChangeNotifications(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object newValue = true, object oldValue = false) + 0xb0 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true, bool allowReadOnlySet = false, bool isSetByStyle = false, bool isSetByBuiltInStyle = false, System.Windows.PropertyInvalidationReason reason = SetValue) + 0xb06 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x31 bytes System.Windows.dll!System.Windows.DependencyObject.SetValue(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x29 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrent.set(bool value = true) + 0x58 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewRow.UpdateCurrentCell() + 0xc3 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.OnCurrentCellInfoChanged(Telerik.Windows.Controls.GridViewCellInfo currentCell = {Telerik.Windows.Controls.GridViewCellInfo}) + 0x11f bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.CurrentCellInfo.set(Telerik.Windows.Controls.GridViewCellInfo value = {Telerik.Windows.Controls.GridViewCellInfo}) + 0xf9 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrentChanged(System.Windows.DependencyObject dependencyObject = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x115 bytes Telerik.Windows.Controls!Telerik.Windows.PropertyMetadata.Create.AnonymousMethod(System.Windows.DependencyObject d = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x266 bytes System.Windows.dll!System.Windows.DependencyObject.RaisePropertyChangeNotifications(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object newValue = true, object oldValue = false) + 0xb0 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true, bool allowReadOnlySet = false, bool isSetByStyle = false, bool isSetByBuiltInStyle = false, System.Windows.PropertyInvalidationReason reason = SetValue) + 0xb06 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x31 bytes System.Windows.dll!System.Windows.DependencyObject.SetValue(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x29 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrent.set(bool value = true) + 0x58 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewRow.UpdateCurrentCell() + 0xc3 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.OnCurrentCellInfoChanged(Telerik.Windows.Controls.GridViewCellInfo currentCell = {Telerik.Windows.Controls.GridViewCellInfo}) + 0x11f bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.CurrentCellInfo.set(Telerik.Windows.Controls.GridViewCellInfo value = {Telerik.Windows.Controls.GridViewCellInfo}) + 0xf9 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrentChanged(System.Windows.DependencyObject dependencyObject = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x115 bytes Telerik.Windows.Controls!Telerik.Windows.PropertyMetadata.Create.AnonymousMethod(System.Windows.DependencyObject d = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x266 bytes System.Windows.dll!System.Windows.DependencyObject.RaisePropertyChangeNotifications(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object newValue = true, object oldValue = false) + 0xb0 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true, bool allowReadOnlySet = false, bool isSetByStyle = false, bool isSetByBuiltInStyle = false, System.Windows.PropertyInvalidationReason reason = SetValue) + 0xb06 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x31 bytes System.Windows.dll!System.Windows.DependencyObject.SetValue(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x29 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrent.set(bool value = true) + 0x58 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewRow.UpdateCurrentCell() + 0xc3 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.OnCurrentCellInfoChanged(Telerik.Windows.Controls.GridViewCellInfo currentCell = {Telerik.Windows.Controls.GridViewCellInfo}) + 0x11f bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.CurrentCellInfo.set(Telerik.Windows.Controls.GridViewCellInfo value = {Telerik.Windows.Controls.GridViewCellInfo}) + 0xf9 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrentChanged(System.Windows.DependencyObject dependencyObject = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x115 bytes Telerik.Windows.Controls!Telerik.Windows.PropertyMetadata.Create.AnonymousMethod(System.Windows.DependencyObject d = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x266 bytes System.Windows.dll!System.Windows.DependencyObject.RaisePropertyChangeNotifications(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object newValue = true, object oldValue = false) + 0xb0 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true, bool allowReadOnlySet = false, bool isSetByStyle = false, bool isSetByBuiltInStyle = false, System.Windows.PropertyInvalidationReason reason = SetValue) + 0xb06 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x31 bytes System.Windows.dll!System.Windows.DependencyObject.SetValue(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x29 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrent.set(bool value = true) + 0x58 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewRow.UpdateCurrentCell() + 0xc3 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.OnCurrentCellInfoChanged(Telerik.Windows.Controls.GridViewCellInfo currentCell = {Telerik.Windows.Controls.GridViewCellInfo}) + 0x11f bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.CurrentCellInfo.set(Telerik.Windows.Controls.GridViewCellInfo value = {Telerik.Windows.Controls.GridViewCellInfo}) + 0xf9 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrentChanged(System.Windows.DependencyObject dependencyObject = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x115 bytes Telerik.Windows.Controls!Telerik.Windows.PropertyMetadata.Create.AnonymousMethod(System.Windows.DependencyObject d = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x266 bytes System.Windows.dll!System.Windows.DependencyObject.RaisePropertyChangeNotifications(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object newValue = true, object oldValue = false) + 0xb0 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true, bool allowReadOnlySet = false, bool isSetByStyle = false, bool isSetByBuiltInStyle = false, System.Windows.PropertyInvalidationReason reason = SetValue) + 0xb06 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x31 bytes System.Windows.dll!System.Windows.DependencyObject.SetValue(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x29 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrent.set(bool value = true) + 0x58 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewRow.UpdateCurrentCell() + 0xc3 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.OnCurrentCellInfoChanged(Telerik.Windows.Controls.GridViewCellInfo currentCell = {Telerik.Windows.Controls.GridViewCellInfo}) + 0x11f bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.CurrentCellInfo.set(Telerik.Windows.Controls.GridViewCellInfo value = {Telerik.Windows.Controls.GridViewCellInfo}) + 0xf9 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrentChanged(System.Windows.DependencyObject dependencyObject = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x115 bytes Telerik.Windows.Controls!Telerik.Windows.PropertyMetadata.Create.AnonymousMethod(System.Windows.DependencyObject d = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x266 bytes System.Windows.dll!System.Windows.DependencyObject.RaisePropertyChangeNotifications(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object newValue = true, object oldValue = false) + 0xb0 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true, bool allowReadOnlySet = false, bool isSetByStyle = false, bool isSetByBuiltInStyle = false, System.Windows.PropertyInvalidationReason reason = SetValue) + 0xb06 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x31 bytes System.Windows.dll!System.Windows.DependencyObject.SetValue(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x29 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrent.set(bool value = true) + 0x58 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewRow.UpdateCurrentCell() + 0xc3 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.OnCurrentCellInfoChanged(Telerik.Windows.Controls.GridViewCellInfo currentCell = {Telerik.Windows.Controls.GridViewCellInfo}) + 0x11f bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.CurrentCellInfo.set(Telerik.Windows.Controls.GridViewCellInfo value = {Telerik.Windows.Controls.GridViewCellInfo}) + 0xf9 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrentChanged(System.Windows.DependencyObject dependencyObject = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x115 bytes Telerik.Windows.Controls!Telerik.Windows.PropertyMetadata.Create.AnonymousMethod(System.Windows.DependencyObject d = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x266 bytes System.Windows.dll!System.Windows.DependencyObject.RaisePropertyChangeNotifications(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object newValue = true, object oldValue = false) + 0xb0 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true, bool allowReadOnlySet = false, bool isSetByStyle = false, bool isSetByBuiltInStyle = false, System.Windows.PropertyInvalidationReason reason = SetValue) + 0xb06 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x31 bytes System.Windows.dll!System.Windows.DependencyObject.SetValue(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x29 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrent.set(bool value = true) + 0x58 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewRow.UpdateCurrentCell() + 0xc3 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.OnCurrentCellInfoChanged(Telerik.Windows.Controls.GridViewCellInfo currentCell = {Telerik.Windows.Controls.GridViewCellInfo}) + 0x11f bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.CurrentCellInfo.set(Telerik.Windows.Controls.GridViewCellInfo value = {Telerik.Windows.Controls.GridViewCellInfo}) + 0xf9 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrentChanged(System.Windows.DependencyObject dependencyObject = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x115 bytes Telerik.Windows.Controls!Telerik.Windows.PropertyMetadata.Create.AnonymousMethod(System.Windows.DependencyObject d = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x266 bytes System.Windows.dll!System.Windows.DependencyObject.RaisePropertyChangeNotifications(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object newValue = true, object oldValue = false) + 0xb0 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true, bool allowReadOnlySet = false, bool isSetByStyle = false, bool isSetByBuiltInStyle = false, System.Windows.PropertyInvalidationReason reason = SetValue) + 0xb06 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x31 bytes System.Windows.dll!System.Windows.DependencyObject.SetValue(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x29 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrent.set(bool value = true) + 0x58 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewRow.UpdateCurrentCell() + 0xc3 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.OnCurrentCellInfoChanged(Telerik.Windows.Controls.GridViewCellInfo currentCell = {Telerik.Windows.Controls.GridViewCellInfo}) + 0x11f bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.CurrentCellInfo.set(Telerik.Windows.Controls.GridViewCellInfo value = {Telerik.Windows.Controls.GridViewCellInfo}) + 0xf9 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrentChanged(System.Windows.DependencyObject dependencyObject = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x115 bytes Telerik.Windows.Controls!Telerik.Windows.PropertyMetadata.Create.AnonymousMethod(System.Windows.DependencyObject d = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x266 bytes System.Windows.dll!System.Windows.DependencyObject.RaisePropertyChangeNotifications(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object newValue = true, object oldValue = false) + 0xb0 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true, bool allowReadOnlySet = false, bool isSetByStyle = false, bool isSetByBuiltInStyle = false, System.Windows.PropertyInvalidationReason reason = SetValue) + 0xb06 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x31 bytes System.Windows.dll!System.Windows.DependencyObject.SetValue(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x29 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrent.set(bool value = true) + 0x58 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewRow.UpdateCurrentCell() + 0xc3 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.OnCurrentCellInfoChanged(Telerik.Windows.Controls.GridViewCellInfo currentCell = {Telerik.Windows.Controls.GridViewCellInfo}) + 0x11f bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.CurrentCellInfo.set(Telerik.Windows.Controls.GridViewCellInfo value = {Telerik.Windows.Controls.GridViewCellInfo}) + 0xf9 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrentChanged(System.Windows.DependencyObject dependencyObject = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x115 bytes Telerik.Windows.Controls!Telerik.Windows.PropertyMetadata.Create.AnonymousMethod(System.Windows.DependencyObject d = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x266 bytes System.Windows.dll!System.Windows.DependencyObject.RaisePropertyChangeNotifications(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object newValue = true, object oldValue = false) + 0xb0 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true, bool allowReadOnlySet = false, bool isSetByStyle = false, bool isSetByBuiltInStyle = false, System.Windows.PropertyInvalidationReason reason = SetValue) + 0xb06 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x31 bytes System.Windows.dll!System.Windows.DependencyObject.SetValue(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x29 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrent.set(bool value = true) + 0x58 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewRow.UpdateCurrentCell() + 0xc3 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.OnCurrentCellInfoChanged(Telerik.Windows.Controls.GridViewCellInfo currentCell = {Telerik.Windows.Controls.GridViewCellInfo}) + 0x11f bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.CurrentCellInfo.set(Telerik.Windows.Controls.GridViewCellInfo value = {Telerik.Windows.Controls.GridViewCellInfo}) + 0xf9 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrentChanged(System.Windows.DependencyObject dependencyObject = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x115 bytes Telerik.Windows.Controls!Telerik.Windows.PropertyMetadata.Create.AnonymousMethod(System.Windows.DependencyObject d = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x266 bytes System.Windows.dll!System.Windows.DependencyObject.RaisePropertyChangeNotifications(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object newValue = true, object oldValue = false) + 0xb0 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true, bool allowReadOnlySet = false, bool isSetByStyle = false, bool isSetByBuiltInStyle = false, System.Windows.PropertyInvalidationReason reason = SetValue) + 0xb06 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x31 bytes System.Windows.dll!System.Windows.DependencyObject.SetValue(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x29 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrent.set(bool value = true) + 0x58 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewRow.UpdateCurrentCell() + 0xc3 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.OnCurrentCellInfoChanged(Telerik.Windows.Controls.GridViewCellInfo currentCell = {Telerik.Windows.Controls.GridViewCellInfo}) + 0x11f bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.CurrentCellInfo.set(Telerik.Windows.Controls.GridViewCellInfo value = {Telerik.Windows.Controls.GridViewCellInfo}) + 0xf9 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrentChanged(System.Windows.DependencyObject dependencyObject = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x115 bytes Telerik.Windows.Controls!Telerik.Windows.PropertyMetadata.Create.AnonymousMethod(System.Windows.DependencyObject d = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x266 bytes System.Windows.dll!System.Windows.DependencyObject.RaisePropertyChangeNotifications(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object newValue = true, object oldValue = false) + 0xb0 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true, bool allowReadOnlySet = false, bool isSetByStyle = false, bool isSetByBuiltInStyle = false, System.Windows.PropertyInvalidationReason reason = SetValue) + 0xb06 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x31 bytes System.Windows.dll!System.Windows.DependencyObject.SetValue(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x29 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrent.set(bool value = true) + 0x58 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewRow.UpdateCurrentCell() + 0xc3 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.OnCurrentCellInfoChanged(Telerik.Windows.Controls.GridViewCellInfo currentCell = {Telerik.Windows.Controls.GridViewCellInfo}) + 0x11f bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.CurrentCellInfo.set(Telerik.Windows.Controls.GridViewCellInfo value = {Telerik.Windows.Controls.GridViewCellInfo}) + 0xf9 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrentChanged(System.Windows.DependencyObject dependencyObject = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x115 bytes Telerik.Windows.Controls!Telerik.Windows.PropertyMetadata.Create.AnonymousMethod(System.Windows.DependencyObject d = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x266 bytes System.Windows.dll!System.Windows.DependencyObject.RaisePropertyChangeNotifications(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object newValue = true, object oldValue = false) + 0xb0 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true, bool allowReadOnlySet = false, bool isSetByStyle = false, bool isSetByBuiltInStyle = false, System.Windows.PropertyInvalidationReason reason = SetValue) + 0xb06 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x31 bytes System.Windows.dll!System.Windows.DependencyObject.SetValue(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x29 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrent.set(bool value = true) + 0x58 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewRow.UpdateCurrentCell() + 0xc3 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.OnCurrentCellInfoChanged(Telerik.Windows.Controls.GridViewCellInfo currentCell = {Telerik.Windows.Controls.GridViewCellInfo}) + 0x11f bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.CurrentCellInfo.set(Telerik.Windows.Controls.GridViewCellInfo value = {Telerik.Windows.Controls.GridViewCellInfo}) + 0xf9 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrentChanged(System.Windows.DependencyObject dependencyObject = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x115 bytes Telerik.Windows.Controls!Telerik.Windows.PropertyMetadata.Create.AnonymousMethod(System.Windows.DependencyObject d = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x266 bytes System.Windows.dll!System.Windows.DependencyObject.RaisePropertyChangeNotifications(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object newValue = true, object oldValue = false) + 0xb0 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true, bool allowReadOnlySet = false, bool isSetByStyle = false, bool isSetByBuiltInStyle = false, System.Windows.PropertyInvalidationReason reason = SetValue) + 0xb06 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x31 bytes System.Windows.dll!System.Windows.DependencyObject.SetValue(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x29 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrent.set(bool value = true) + 0x58 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewRow.UpdateCurrentCell() + 0xc3 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.OnCurrentCellInfoChanged(Telerik.Windows.Controls.GridViewCellInfo currentCell = {Telerik.Windows.Controls.GridViewCellInfo}) + 0x11f bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.CurrentCellInfo.set(Telerik.Windows.Controls.GridViewCellInfo value = {Telerik.Windows.Controls.GridViewCellInfo}) + 0xf9 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrentChanged(System.Windows.DependencyObject dependencyObject = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x115 bytes Telerik.Windows.Controls!Telerik.Windows.PropertyMetadata.Create.AnonymousMethod(System.Windows.DependencyObject d = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x266 bytes System.Windows.dll!System.Windows.DependencyObject.RaisePropertyChangeNotifications(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object newValue = true, object oldValue = false) + 0xb0 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true, bool allowReadOnlySet = false, bool isSetByStyle = false, bool isSetByBuiltInStyle = false, System.Windows.PropertyInvalidationReason reason = SetValue) + 0xb06 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x31 bytes System.Windows.dll!System.Windows.DependencyObject.SetValue(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x29 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrent.set(bool value = true) + 0x58 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewRow.UpdateCurrentCell() + 0xc3 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.OnCurrentCellInfoChanged(Telerik.Windows.Controls.GridViewCellInfo currentCell = {Telerik.Windows.Controls.GridViewCellInfo}) + 0x11f bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.CurrentCellInfo.set(Telerik.Windows.Controls.GridViewCellInfo value = {Telerik.Windows.Controls.GridViewCellInfo}) + 0xf9 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrentChanged(System.Windows.DependencyObject dependencyObject = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x115 bytes Telerik.Windows.Controls!Telerik.Windows.PropertyMetadata.Create.AnonymousMethod(System.Windows.DependencyObject d = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x266 bytes System.Windows.dll!System.Windows.DependencyObject.RaisePropertyChangeNotifications(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object newValue = true, object oldValue = false) + 0xb0 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true, bool allowReadOnlySet = false, bool isSetByStyle = false, bool isSetByBuiltInStyle = false, System.Windows.PropertyInvalidationReason reason = SetValue) + 0xb06 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x31 bytes System.Windows.dll!System.Windows.DependencyObject.SetValue(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x29 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrent.set(bool value = true) + 0x58 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewRow.UpdateCurrentCell() + 0xc3 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.OnCurrentCellInfoChanged(Telerik.Windows.Controls.GridViewCellInfo currentCell = {Telerik.Windows.Controls.GridViewCellInfo}) + 0x11f bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.CurrentCellInfo.set(Telerik.Windows.Controls.GridViewCellInfo value = {Telerik.Windows.Controls.GridViewCellInfo}) + 0xf9 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrentChanged(System.Windows.DependencyObject dependencyObject = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x115 bytes Telerik.Windows.Controls!Telerik.Windows.PropertyMetadata.Create.AnonymousMethod(System.Windows.DependencyObject d = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x266 bytes System.Windows.dll!System.Windows.DependencyObject.RaisePropertyChangeNotifications(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object newValue = true, object oldValue = false) + 0xb0 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true, bool allowReadOnlySet = false, bool isSetByStyle = false, bool isSetByBuiltInStyle = false, System.Windows.PropertyInvalidationReason reason = SetValue) + 0xb06 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x31 bytes System.Windows.dll!System.Windows.DependencyObject.SetValue(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x29 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrent.set(bool value = true) + 0x58 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewRow.UpdateCurrentCell() + 0xc3 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.OnCurrentCellInfoChanged(Telerik.Windows.Controls.GridViewCellInfo currentCell = {Telerik.Windows.Controls.GridViewCellInfo}) + 0x11f bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.CurrentCellInfo.set(Telerik.Windows.Controls.GridViewCellInfo value = {Telerik.Windows.Controls.GridViewCellInfo}) + 0xf9 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrentChanged(System.Windows.DependencyObject dependencyObject = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x115 bytes Telerik.Windows.Controls!Telerik.Windows.PropertyMetadata.Create.AnonymousMethod(System.Windows.DependencyObject d = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x266 bytes System.Windows.dll!System.Windows.DependencyObject.RaisePropertyChangeNotifications(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object newValue = true, object oldValue = false) + 0xb0 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true, bool allowReadOnlySet = false, bool isSetByStyle = false, bool isSetByBuiltInStyle = false, System.Windows.PropertyInvalidationReason reason = SetValue) + 0xb06 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x31 bytes System.Windows.dll!System.Windows.DependencyObject.SetValue(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x29 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrent.set(bool value = true) + 0x58 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewRow.UpdateCurrentCell() + 0xc3 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.OnCurrentCellInfoChanged(Telerik.Windows.Controls.GridViewCellInfo currentCell = {Telerik.Windows.Controls.GridViewCellInfo}) + 0x11f bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.CurrentCellInfo.set(Telerik.Windows.Controls.GridViewCellInfo value = {Telerik.Windows.Controls.GridViewCellInfo}) + 0xf9 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrentChanged(System.Windows.DependencyObject dependencyObject = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x115 bytes Telerik.Windows.Controls!Telerik.Windows.PropertyMetadata.Create.AnonymousMethod(System.Windows.DependencyObject d = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x266 bytes System.Windows.dll!System.Windows.DependencyObject.RaisePropertyChangeNotifications(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object newValue = true, object oldValue = false) + 0xb0 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true, bool allowReadOnlySet = false, bool isSetByStyle = false, bool isSetByBuiltInStyle = false, System.Windows.PropertyInvalidationReason reason = SetValue) + 0xb06 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x31 bytes System.Windows.dll!System.Windows.DependencyObject.SetValue(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x29 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrent.set(bool value = true) + 0x58 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewRow.UpdateCurrentCell() + 0xc3 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.OnCurrentCellInfoChanged(Telerik.Windows.Controls.GridViewCellInfo currentCell = {Telerik.Windows.Controls.GridViewCellInfo}) + 0x11f bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.CurrentCellInfo.set(Telerik.Windows.Controls.GridViewCellInfo value = {Telerik.Windows.Controls.GridViewCellInfo}) + 0xf9 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrentChanged(System.Windows.DependencyObject dependencyObject = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x115 bytes Telerik.Windows.Controls!Telerik.Windows.PropertyMetadata.Create.AnonymousMethod(System.Windows.DependencyObject d = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x266 bytes System.Windows.dll!System.Windows.DependencyObject.RaisePropertyChangeNotifications(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object newValue = true, object oldValue = false) + 0xb0 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true, bool allowReadOnlySet = false, bool isSetByStyle = false, bool isSetByBuiltInStyle = false, System.Windows.PropertyInvalidationReason reason = SetValue) + 0xb06 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x31 bytes System.Windows.dll!System.Windows.DependencyObject.SetValue(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x29 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrent.set(bool value = true) + 0x58 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewRow.UpdateCurrentCell() + 0xc3 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.OnCurrentCellInfoChanged(Telerik.Windows.Controls.GridViewCellInfo currentCell = {Telerik.Windows.Controls.GridViewCellInfo}) + 0x11f bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.CurrentCellInfo.set(Telerik.Windows.Controls.GridViewCellInfo value = {Telerik.Windows.Controls.GridViewCellInfo}) + 0xf9 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrentChanged(System.Windows.DependencyObject dependencyObject = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x115 bytes Telerik.Windows.Controls!Telerik.Windows.PropertyMetadata.Create.AnonymousMethod(System.Windows.DependencyObject d = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x266 bytes System.Windows.dll!System.Windows.DependencyObject.RaisePropertyChangeNotifications(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object newValue = true, object oldValue = false) + 0xb0 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true, bool allowReadOnlySet = false, bool isSetByStyle = false, bool isSetByBuiltInStyle = false, System.Windows.PropertyInvalidationReason reason = SetValue) + 0xb06 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x31 bytes System.Windows.dll!System.Windows.DependencyObject.SetValue(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x29 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrent.set(bool value = true) + 0x58 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewRow.UpdateCurrentCell() + 0xc3 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.OnCurrentCellInfoChanged(Telerik.Windows.Controls.GridViewCellInfo currentCell = {Telerik.Windows.Controls.GridViewCellInfo}) + 0x11f bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.CurrentCellInfo.set(Telerik.Windows.Controls.GridViewCellInfo value = {Telerik.Windows.Controls.GridViewCellInfo}) + 0xf9 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrentChanged(System.Windows.DependencyObject dependencyObject = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x115 bytes Telerik.Windows.Controls!Telerik.Windows.PropertyMetadata.Create.AnonymousMethod(System.Windows.DependencyObject d = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x266 bytes System.Windows.dll!System.Windows.DependencyObject.RaisePropertyChangeNotifications(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object newValue = true, object oldValue = false) + 0xb0 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true, bool allowReadOnlySet = false, bool isSetByStyle = false, bool isSetByBuiltInStyle = false, System.Windows.PropertyInvalidationReason reason = SetValue) + 0xb06 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x31 bytes System.Windows.dll!System.Windows.DependencyObject.SetValue(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x29 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrent.set(bool value = true) + 0x58 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewRow.UpdateCurrentCell() + 0xc3 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.OnCurrentCellInfoChanged(Telerik.Windows.Controls.GridViewCellInfo currentCell = {Telerik.Windows.Controls.GridViewCellInfo}) + 0x11f bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.CurrentCellInfo.set(Telerik.Windows.Controls.GridViewCellInfo value = {Telerik.Windows.Controls.GridViewCellInfo}) + 0xf9 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrentChanged(System.Windows.DependencyObject dependencyObject = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x115 bytes Telerik.Windows.Controls!Telerik.Windows.PropertyMetadata.Create.AnonymousMethod(System.Windows.DependencyObject d = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x266 bytes System.Windows.dll!System.Windows.DependencyObject.RaisePropertyChangeNotifications(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object newValue = true, object oldValue = false) + 0xb0 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true, bool allowReadOnlySet = false, bool isSetByStyle = false, bool isSetByBuiltInStyle = false, System.Windows.PropertyInvalidationReason reason = SetValue) + 0xb06 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x31 bytes System.Windows.dll!System.Windows.DependencyObject.SetValue(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x29 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrent.set(bool value = true) + 0x58 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewRow.UpdateCurrentCell() + 0xc3 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.OnCurrentCellInfoChanged(Telerik.Windows.Controls.GridViewCellInfo currentCell = {Telerik.Windows.Controls.GridViewCellInfo}) + 0x11f bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.CurrentCellInfo.set(Telerik.Windows.Controls.GridViewCellInfo value = {Telerik.Windows.Controls.GridViewCellInfo}) + 0xf9 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrentChanged(System.Windows.DependencyObject dependencyObject = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x115 bytes Telerik.Windows.Controls!Telerik.Windows.PropertyMetadata.Create.AnonymousMethod(System.Windows.DependencyObject d = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x266 bytes System.Windows.dll!System.Windows.DependencyObject.RaisePropertyChangeNotifications(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object newValue = true, object oldValue = false) + 0xb0 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true, bool allowReadOnlySet = false, bool isSetByStyle = false, bool isSetByBuiltInStyle = false, System.Windows.PropertyInvalidationReason reason = SetValue) + 0xb06 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x31 bytes System.Windows.dll!System.Windows.DependencyObject.SetValue(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x29 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrent.set(bool value = true) + 0x58 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewRow.UpdateCurrentCell() + 0xc3 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.OnCurrentCellInfoChanged(Telerik.Windows.Controls.GridViewCellInfo currentCell = {Telerik.Windows.Controls.GridViewCellInfo}) + 0x11f bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.CurrentCellInfo.set(Telerik.Windows.Controls.GridViewCellInfo value = {Telerik.Windows.Controls.GridViewCellInfo}) + 0xf9 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrentChanged(System.Windows.DependencyObject dependencyObject = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x115 bytes Telerik.Windows.Controls!Telerik.Windows.PropertyMetadata.Create.AnonymousMethod(System.Windows.DependencyObject d = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x266 bytes System.Windows.dll!System.Windows.DependencyObject.RaisePropertyChangeNotifications(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object newValue = true, object oldValue = false) + 0xb0 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true, bool allowReadOnlySet = false, bool isSetByStyle = false, bool isSetByBuiltInStyle = false, System.Windows.PropertyInvalidationReason reason = SetValue) + 0xb06 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x31 bytes System.Windows.dll!System.Windows.DependencyObject.SetValue(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x29 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrent.set(bool value = true) + 0x58 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewRow.UpdateCurrentCell() + 0xc3 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.OnCurrentCellInfoChanged(Telerik.Windows.Controls.GridViewCellInfo currentCell = {Telerik.Windows.Controls.GridViewCellInfo}) + 0x11f bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.CurrentCellInfo.set(Telerik.Windows.Controls.GridViewCellInfo value = {Telerik.Windows.Controls.GridViewCellInfo}) + 0xf9 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrentChanged(System.Windows.DependencyObject dependencyObject = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x115 bytes Telerik.Windows.Controls!Telerik.Windows.PropertyMetadata.Create.AnonymousMethod(System.Windows.DependencyObject d = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x266 bytes System.Windows.dll!System.Windows.DependencyObject.RaisePropertyChangeNotifications(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object newValue = true, object oldValue = false) + 0xb0 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true, bool allowReadOnlySet = false, bool isSetByStyle = false, bool isSetByBuiltInStyle = false, System.Windows.PropertyInvalidationReason reason = SetValue) + 0xb06 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x31 bytes System.Windows.dll!System.Windows.DependencyObject.SetValue(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x29 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrent.set(bool value = true) + 0x58 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewRow.UpdateCurrentCell() + 0xc3 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.OnCurrentCellInfoChanged(Telerik.Windows.Controls.GridViewCellInfo currentCell = {Telerik.Windows.Controls.GridViewCellInfo}) + 0x11f bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.CurrentCellInfo.set(Telerik.Windows.Controls.GridViewCellInfo value = {Telerik.Windows.Controls.GridViewCellInfo}) + 0xf9 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrentChanged(System.Windows.DependencyObject dependencyObject = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x115 bytes Telerik.Windows.Controls!Telerik.Windows.PropertyMetadata.Create.AnonymousMethod(System.Windows.DependencyObject d = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x266 bytes System.Windows.dll!System.Windows.DependencyObject.RaisePropertyChangeNotifications(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object newValue = true, object oldValue = false) + 0xb0 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true, bool allowReadOnlySet = false, bool isSetByStyle = false, bool isSetByBuiltInStyle = false, System.Windows.PropertyInvalidationReason reason = SetValue) + 0xb06 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x31 bytes System.Windows.dll!System.Windows.DependencyObject.SetValue(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x29 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrent.set(bool value = true) + 0x58 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewRow.UpdateCurrentCell() + 0xc3 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.OnCurrentCellInfoChanged(Telerik.Windows.Controls.GridViewCellInfo currentCell = {Telerik.Windows.Controls.GridViewCellInfo}) + 0x11f bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.CurrentCellInfo.set(Telerik.Windows.Controls.GridViewCellInfo value = {Telerik.Windows.Controls.GridViewCellInfo}) + 0xf9 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrentChanged(System.Windows.DependencyObject dependencyObject = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x115 bytes Telerik.Windows.Controls!Telerik.Windows.PropertyMetadata.Create.AnonymousMethod(System.Windows.DependencyObject d = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x266 bytes System.Windows.dll!System.Windows.DependencyObject.RaisePropertyChangeNotifications(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object newValue = true, object oldValue = false) + 0xb0 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true, bool allowReadOnlySet = false, bool isSetByStyle = false, bool isSetByBuiltInStyle = false, System.Windows.PropertyInvalidationReason reason = SetValue) + 0xb06 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x31 bytes System.Windows.dll!System.Windows.DependencyObject.SetValue(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x29 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrent.set(bool value = true) + 0x58 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewRow.UpdateCurrentCell() + 0xc3 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.OnCurrentCellInfoChanged(Telerik.Windows.Controls.GridViewCellInfo currentCell = {Telerik.Windows.Controls.GridViewCellInfo}) + 0x11f bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.CurrentCellInfo.set(Telerik.Windows.Controls.GridViewCellInfo value = {Telerik.Windows.Controls.GridViewCellInfo}) + 0xf9 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrentChanged(System.Windows.DependencyObject dependencyObject = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x115 bytes Telerik.Windows.Controls!Telerik.Windows.PropertyMetadata.Create.AnonymousMethod(System.Windows.DependencyObject d = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x266 bytes System.Windows.dll!System.Windows.DependencyObject.RaisePropertyChangeNotifications(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object newValue = true, object oldValue = false) + 0xb0 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true, bool allowReadOnlySet = false, bool isSetByStyle = false, bool isSetByBuiltInStyle = false, System.Windows.PropertyInvalidationReason reason = SetValue) + 0xb06 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x31 bytes System.Windows.dll!System.Windows.DependencyObject.SetValue(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x29 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrent.set(bool value = true) + 0x58 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewRow.UpdateCurrentCell() + 0xc3 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.OnCurrentCellInfoChanged(Telerik.Windows.Controls.GridViewCellInfo currentCell = {Telerik.Windows.Controls.GridViewCellInfo}) + 0x11f bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.CurrentCellInfo.set(Telerik.Windows.Controls.GridViewCellInfo value = {Telerik.Windows.Controls.GridViewCellInfo}) + 0xf9 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrentChanged(System.Windows.DependencyObject dependencyObject = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x115 bytes Telerik.Windows.Controls!Telerik.Windows.PropertyMetadata.Create.AnonymousMethod(System.Windows.DependencyObject d = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x266 bytes System.Windows.dll!System.Windows.DependencyObject.RaisePropertyChangeNotifications(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object newValue = true, object oldValue = false) + 0xb0 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true, bool allowReadOnlySet = false, bool isSetByStyle = false, bool isSetByBuiltInStyle = false, System.Windows.PropertyInvalidationReason reason = SetValue) + 0xb06 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x31 bytes System.Windows.dll!System.Windows.DependencyObject.SetValue(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x29 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrent.set(bool value = true) + 0x58 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewRow.UpdateCurrentCell() + 0xc3 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.OnCurrentCellInfoChanged(Telerik.Windows.Controls.GridViewCellInfo currentCell = {Telerik.Windows.Controls.GridViewCellInfo}) + 0x11f bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.CurrentCellInfo.set(Telerik.Windows.Controls.GridViewCellInfo value = {Telerik.Windows.Controls.GridViewCellInfo}) + 0xf9 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrentChanged(System.Windows.DependencyObject dependencyObject = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x115 bytes Telerik.Windows.Controls!Telerik.Windows.PropertyMetadata.Create.AnonymousMethod(System.Windows.DependencyObject d = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x266 bytes System.Windows.dll!System.Windows.DependencyObject.RaisePropertyChangeNotifications(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object newValue = true, object oldValue = false) + 0xb0 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true, bool allowReadOnlySet = false, bool isSetByStyle = false, bool isSetByBuiltInStyle = false, System.Windows.PropertyInvalidationReason reason = SetValue) + 0xb06 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x31 bytes System.Windows.dll!System.Windows.DependencyObject.SetValue(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x29 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrent.set(bool value = true) + 0x58 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewRow.UpdateCurrentCell() + 0xc3 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.OnCurrentCellInfoChanged(Telerik.Windows.Controls.GridViewCellInfo currentCell = {Telerik.Windows.Controls.GridViewCellInfo}) + 0x11f bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.CurrentCellInfo.set(Telerik.Windows.Controls.GridViewCellInfo value = {Telerik.Windows.Controls.GridViewCellInfo}) + 0xf9 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrentChanged(System.Windows.DependencyObject dependencyObject = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x115 bytes Telerik.Windows.Controls!Telerik.Windows.PropertyMetadata.Create.AnonymousMethod(System.Windows.DependencyObject d = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x266 bytes System.Windows.dll!System.Windows.DependencyObject.RaisePropertyChangeNotifications(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object newValue = true, object oldValue = false) + 0xb0 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true, bool allowReadOnlySet = false, bool isSetByStyle = false, bool isSetByBuiltInStyle = false, System.Windows.PropertyInvalidationReason reason = SetValue) + 0xb06 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x31 bytes System.Windows.dll!System.Windows.DependencyObject.SetValue(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x29 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrent.set(bool value = true) + 0x58 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewRow.UpdateCurrentCell() + 0xc3 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.OnCurrentCellInfoChanged(Telerik.Windows.Controls.GridViewCellInfo currentCell = {Telerik.Windows.Controls.GridViewCellInfo}) + 0x11f bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.CurrentCellInfo.set(Telerik.Windows.Controls.GridViewCellInfo value = {Telerik.Windows.Controls.GridViewCellInfo}) + 0xf9 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrentChanged(System.Windows.DependencyObject dependencyObject = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x115 bytes Telerik.Windows.Controls!Telerik.Windows.PropertyMetadata.Create.AnonymousMethod(System.Windows.DependencyObject d = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x266 bytes System.Windows.dll!System.Windows.DependencyObject.RaisePropertyChangeNotifications(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object newValue = true, object oldValue = false) + 0xb0 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true, bool allowReadOnlySet = false, bool isSetByStyle = false, bool isSetByBuiltInStyle = false, System.Windows.PropertyInvalidationReason reason = SetValue) + 0xb06 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x31 bytes System.Windows.dll!System.Windows.DependencyObject.SetValue(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x29 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrent.set(bool value = true) + 0x58 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewRow.UpdateCurrentCell() + 0xc3 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.OnCurrentCellInfoChanged(Telerik.Windows.Controls.GridViewCellInfo currentCell = {Telerik.Windows.Controls.GridViewCellInfo}) + 0x11f bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.CurrentCellInfo.set(Telerik.Windows.Controls.GridViewCellInfo value = {Telerik.Windows.Controls.GridViewCellInfo}) + 0xf9 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrentChanged(System.Windows.DependencyObject dependencyObject = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x115 bytes Telerik.Windows.Controls!Telerik.Windows.PropertyMetadata.Create.AnonymousMethod(System.Windows.DependencyObject d = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x266 bytes System.Windows.dll!System.Windows.DependencyObject.RaisePropertyChangeNotifications(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object newValue = true, object oldValue = false) + 0xb0 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true, bool allowReadOnlySet = false, bool isSetByStyle = false, bool isSetByBuiltInStyle = false, System.Windows.PropertyInvalidationReason reason = SetValue) + 0xb06 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x31 bytes System.Windows.dll!System.Windows.DependencyObject.SetValue(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x29 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrent.set(bool value = true) + 0x58 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewRow.UpdateCurrentCell() + 0xc3 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.OnCurrentCellInfoChanged(Telerik.Windows.Controls.GridViewCellInfo currentCell = {Telerik.Windows.Controls.GridViewCellInfo}) + 0x11f bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.CurrentCellInfo.set(Telerik.Windows.Controls.GridViewCellInfo value = {Telerik.Windows.Controls.GridViewCellInfo}) + 0xf9 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrentChanged(System.Windows.DependencyObject dependencyObject = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x115 bytes Telerik.Windows.Controls!Telerik.Windows.PropertyMetadata.Create.AnonymousMethod(System.Windows.DependencyObject d = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x266 bytes System.Windows.dll!System.Windows.DependencyObject.RaisePropertyChangeNotifications(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object newValue = true, object oldValue = false) + 0xb0 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true, bool allowReadOnlySet = false, bool isSetByStyle = false, bool isSetByBuiltInStyle = false, System.Windows.PropertyInvalidationReason reason = SetValue) + 0xb06 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x31 bytes System.Windows.dll!System.Windows.DependencyObject.SetValue(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x29 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrent.set(bool value = true) + 0x58 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewRow.UpdateCurrentCell() + 0xc3 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.OnCurrentCellInfoChanged(Telerik.Windows.Controls.GridViewCellInfo currentCell = {Telerik.Windows.Controls.GridViewCellInfo}) + 0x11f bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.CurrentCellInfo.set(Telerik.Windows.Controls.GridViewCellInfo value = {Telerik.Windows.Controls.GridViewCellInfo}) + 0xf9 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrentChanged(System.Windows.DependencyObject dependencyObject = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x115 bytes Telerik.Windows.Controls!Telerik.Windows.PropertyMetadata.Create.AnonymousMethod(System.Windows.DependencyObject d = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x266 bytes System.Windows.dll!System.Windows.DependencyObject.RaisePropertyChangeNotifications(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object newValue = true, object oldValue = false) + 0xb0 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true, bool allowReadOnlySet = false, bool isSetByStyle = false, bool isSetByBuiltInStyle = false, System.Windows.PropertyInvalidationReason reason = SetValue) + 0xb06 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x31 bytes System.Windows.dll!System.Windows.DependencyObject.SetValue(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x29 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrent.set(bool value = true) + 0x58 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewRow.UpdateCurrentCell() + 0xc3 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.OnCurrentCellInfoChanged(Telerik.Windows.Controls.GridViewCellInfo currentCell = {Telerik.Windows.Controls.GridViewCellInfo}) + 0x11f bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.CurrentCellInfo.set(Telerik.Windows.Controls.GridViewCellInfo value = {Telerik.Windows.Controls.GridViewCellInfo}) + 0xf9 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrentChanged(System.Windows.DependencyObject dependencyObject = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x115 bytes Telerik.Windows.Controls!Telerik.Windows.PropertyMetadata.Create.AnonymousMethod(System.Windows.DependencyObject d = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x266 bytes System.Windows.dll!System.Windows.DependencyObject.RaisePropertyChangeNotifications(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object newValue = true, object oldValue = false) + 0xb0 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true, bool allowReadOnlySet = false, bool isSetByStyle = false, bool isSetByBuiltInStyle = false, System.Windows.PropertyInvalidationReason reason = SetValue) + 0xb06 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x31 bytes System.Windows.dll!System.Windows.DependencyObject.SetValue(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x29 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrent.set(bool value = true) + 0x58 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewRow.UpdateCurrentCell() + 0xc3 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.OnCurrentCellInfoChanged(Telerik.Windows.Controls.GridViewCellInfo currentCell = {Telerik.Windows.Controls.GridViewCellInfo}) + 0x11f bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.CurrentCellInfo.set(Telerik.Windows.Controls.GridViewCellInfo value = {Telerik.Windows.Controls.GridViewCellInfo}) + 0xf9 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrentChanged(System.Windows.DependencyObject dependencyObject = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x115 bytes Telerik.Windows.Controls!Telerik.Windows.PropertyMetadata.Create.AnonymousMethod(System.Windows.DependencyObject d = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x266 bytes System.Windows.dll!System.Windows.DependencyObject.RaisePropertyChangeNotifications(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object newValue = true, object oldValue = false) + 0xb0 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true, bool allowReadOnlySet = false, bool isSetByStyle = false, bool isSetByBuiltInStyle = false, System.Windows.PropertyInvalidationReason reason = SetValue) + 0xb06 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x31 bytes System.Windows.dll!System.Windows.DependencyObject.SetValue(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x29 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrent.set(bool value = true) + 0x58 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewRow.UpdateCurrentCell() + 0xc3 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.OnCurrentCellInfoChanged(Telerik.Windows.Controls.GridViewCellInfo currentCell = {Telerik.Windows.Controls.GridViewCellInfo}) + 0x11f bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.CurrentCellInfo.set(Telerik.Windows.Controls.GridViewCellInfo value = {Telerik.Windows.Controls.GridViewCellInfo}) + 0xf9 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrentChanged(System.Windows.DependencyObject dependencyObject = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x115 bytes Telerik.Windows.Controls!Telerik.Windows.PropertyMetadata.Create.AnonymousMethod(System.Windows.DependencyObject d = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x266 bytes System.Windows.dll!System.Windows.DependencyObject.RaisePropertyChangeNotifications(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object newValue = true, object oldValue = false) + 0xb0 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true, bool allowReadOnlySet = false, bool isSetByStyle = false, bool isSetByBuiltInStyle = false, System.Windows.PropertyInvalidationReason reason = SetValue) + 0xb06 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x31 bytes System.Windows.dll!System.Windows.DependencyObject.SetValue(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x29 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrent.set(bool value = true) + 0x58 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewRow.UpdateCurrentCell() + 0xc3 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.OnCurrentCellInfoChanged(Telerik.Windows.Controls.GridViewCellInfo currentCell = {Telerik.Windows.Controls.GridViewCellInfo}) + 0x11f bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.CurrentCellInfo.set(Telerik.Windows.Controls.GridViewCellInfo value = {Telerik.Windows.Controls.GridViewCellInfo}) + 0xf9 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrentChanged(System.Windows.DependencyObject dependencyObject = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x115 bytes Telerik.Windows.Controls!Telerik.Windows.PropertyMetadata.Create.AnonymousMethod(System.Windows.DependencyObject d = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x266 bytes System.Windows.dll!System.Windows.DependencyObject.RaisePropertyChangeNotifications(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object newValue = true, object oldValue = false) + 0xb0 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true, bool allowReadOnlySet = false, bool isSetByStyle = false, bool isSetByBuiltInStyle = false, System.Windows.PropertyInvalidationReason reason = SetValue) + 0xb06 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x31 bytes System.Windows.dll!System.Windows.DependencyObject.SetValue(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x29 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrent.set(bool value = true) + 0x58 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewRow.UpdateCurrentCell() + 0xc3 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.OnCurrentCellInfoChanged(Telerik.Windows.Controls.GridViewCellInfo currentCell = {Telerik.Windows.Controls.GridViewCellInfo}) + 0x11f bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.CurrentCellInfo.set(Telerik.Windows.Controls.GridViewCellInfo value = {Telerik.Windows.Controls.GridViewCellInfo}) + 0xf9 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrentChanged(System.Windows.DependencyObject dependencyObject = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x115 bytes Telerik.Windows.Controls!Telerik.Windows.PropertyMetadata.Create.AnonymousMethod(System.Windows.DependencyObject d = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x266 bytes System.Windows.dll!System.Windows.DependencyObject.RaisePropertyChangeNotifications(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object newValue = true, object oldValue = false) + 0xb0 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true, bool allowReadOnlySet = false, bool isSetByStyle = false, bool isSetByBuiltInStyle = false, System.Windows.PropertyInvalidationReason reason = SetValue) + 0xb06 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x31 bytes System.Windows.dll!System.Windows.DependencyObject.SetValue(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x29 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrent.set(bool value = true) + 0x58 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewRow.UpdateCurrentCell() + 0xc3 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.OnCurrentCellInfoChanged(Telerik.Windows.Controls.GridViewCellInfo currentCell = {Telerik.Windows.Controls.GridViewCellInfo}) + 0x11f bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.CurrentCellInfo.set(Telerik.Windows.Controls.GridViewCellInfo value = {Telerik.Windows.Controls.GridViewCellInfo}) + 0xf9 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrentChanged(System.Windows.DependencyObject dependencyObject = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x115 bytes Telerik.Windows.Controls!Telerik.Windows.PropertyMetadata.Create.AnonymousMethod(System.Windows.DependencyObject d = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x266 bytes System.Windows.dll!System.Windows.DependencyObject.RaisePropertyChangeNotifications(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object newValue = true, object oldValue = false) + 0xb0 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true, bool allowReadOnlySet = false, bool isSetByStyle = false, bool isSetByBuiltInStyle = false, System.Windows.PropertyInvalidationReason reason = SetValue) + 0xb06 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x31 bytes System.Windows.dll!System.Windows.DependencyObject.SetValue(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x29 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrent.set(bool value = true) + 0x58 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewRow.UpdateCurrentCell() + 0xc3 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.OnCurrentCellInfoChanged(Telerik.Windows.Controls.GridViewCellInfo currentCell = {Telerik.Windows.Controls.GridViewCellInfo}) + 0x11f bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.CurrentCellInfo.set(Telerik.Windows.Controls.GridViewCellInfo value = {Telerik.Windows.Controls.GridViewCellInfo}) + 0xf9 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrentChanged(System.Windows.DependencyObject dependencyObject = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x115 bytes Telerik.Windows.Controls!Telerik.Windows.PropertyMetadata.Create.AnonymousMethod(System.Windows.DependencyObject d = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x266 bytes System.Windows.dll!System.Windows.DependencyObject.RaisePropertyChangeNotifications(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object newValue = true, object oldValue = false) + 0xb0 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true, bool allowReadOnlySet = false, bool isSetByStyle = false, bool isSetByBuiltInStyle = false, System.Windows.PropertyInvalidationReason reason = SetValue) + 0xb06 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x31 bytes System.Windows.dll!System.Windows.DependencyObject.SetValue(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x29 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrent.set(bool value = true) + 0x58 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewRow.UpdateCurrentCell() + 0xc3 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.OnCurrentCellInfoChanged(Telerik.Windows.Controls.GridViewCellInfo currentCell = {Telerik.Windows.Controls.GridViewCellInfo}) + 0x11f bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.CurrentCellInfo.set(Telerik.Windows.Controls.GridViewCellInfo value = {Telerik.Windows.Controls.GridViewCellInfo}) + 0xf9 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrentChanged(System.Windows.DependencyObject dependencyObject = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x115 bytes Telerik.Windows.Controls!Telerik.Windows.PropertyMetadata.Create.AnonymousMethod(System.Windows.DependencyObject d = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x266 bytes System.Windows.dll!System.Windows.DependencyObject.RaisePropertyChangeNotifications(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object newValue = true, object oldValue = false) + 0xb0 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true, bool allowReadOnlySet = false, bool isSetByStyle = false, bool isSetByBuiltInStyle = false, System.Windows.PropertyInvalidationReason reason = SetValue) + 0xb06 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x31 bytes System.Windows.dll!System.Windows.DependencyObject.SetValue(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x29 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrent.set(bool value = true) + 0x58 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewRow.UpdateCurrentCell() + 0xc3 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.OnCurrentCellInfoChanged(Telerik.Windows.Controls.GridViewCellInfo currentCell = {Telerik.Windows.Controls.GridViewCellInfo}) + 0x11f bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.CurrentCellInfo.set(Telerik.Windows.Controls.GridViewCellInfo value = {Telerik.Windows.Controls.GridViewCellInfo}) + 0xf9 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrentChanged(System.Windows.DependencyObject dependencyObject = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x115 bytes Telerik.Windows.Controls!Telerik.Windows.PropertyMetadata.Create.AnonymousMethod(System.Windows.DependencyObject d = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x266 bytes System.Windows.dll!System.Windows.DependencyObject.RaisePropertyChangeNotifications(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object newValue = true, object oldValue = false) + 0xb0 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true, bool allowReadOnlySet = false, bool isSetByStyle = false, bool isSetByBuiltInStyle = false, System.Windows.PropertyInvalidationReason reason = SetValue) + 0xb06 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x31 bytes System.Windows.dll!System.Windows.DependencyObject.SetValue(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x29 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrent.set(bool value = true) + 0x58 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewRow.UpdateCurrentCell() + 0xc3 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.OnCurrentCellInfoChanged(Telerik.Windows.Controls.GridViewCellInfo currentCell = {Telerik.Windows.Controls.GridViewCellInfo}) + 0x11f bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.CurrentCellInfo.set(Telerik.Windows.Controls.GridViewCellInfo value = {Telerik.Windows.Controls.GridViewCellInfo}) + 0xf9 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrentChanged(System.Windows.DependencyObject dependencyObject = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x115 bytes Telerik.Windows.Controls!Telerik.Windows.PropertyMetadata.Create.AnonymousMethod(System.Windows.DependencyObject d = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x266 bytes System.Windows.dll!System.Windows.DependencyObject.RaisePropertyChangeNotifications(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object newValue = true, object oldValue = false) + 0xb0 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true, bool allowReadOnlySet = false, bool isSetByStyle = false, bool isSetByBuiltInStyle = false, System.Windows.PropertyInvalidationReason reason = SetValue) + 0xb06 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x31 bytes System.Windows.dll!System.Windows.DependencyObject.SetValue(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x29 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrent.set(bool value = true) + 0x58 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewRow.UpdateCurrentCell() + 0xc3 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.OnCurrentCellInfoChanged(Telerik.Windows.Controls.GridViewCellInfo currentCell = {Telerik.Windows.Controls.GridViewCellInfo}) + 0x11f bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.CurrentCellInfo.set(Telerik.Windows.Controls.GridViewCellInfo value = {Telerik.Windows.Controls.GridViewCellInfo}) + 0xf9 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrentChanged(System.Windows.DependencyObject dependencyObject = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x115 bytes Telerik.Windows.Controls!Telerik.Windows.PropertyMetadata.Create.AnonymousMethod(System.Windows.DependencyObject d = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x266 bytes System.Windows.dll!System.Windows.DependencyObject.RaisePropertyChangeNotifications(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object newValue = true, object oldValue = false) + 0xb0 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true, bool allowReadOnlySet = false, bool isSetByStyle = false, bool isSetByBuiltInStyle = false, System.Windows.PropertyInvalidationReason reason = SetValue) + 0xb06 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x31 bytes System.Windows.dll!System.Windows.DependencyObject.SetValue(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x29 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrent.set(bool value = true) + 0x58 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewRow.UpdateCurrentCell() + 0xc3 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.OnCurrentCellInfoChanged(Telerik.Windows.Controls.GridViewCellInfo currentCell = {Telerik.Windows.Controls.GridViewCellInfo}) + 0x11f bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.CurrentCellInfo.set(Telerik.Windows.Controls.GridViewCellInfo value = {Telerik.Windows.Controls.GridViewCellInfo}) + 0xf9 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrentChanged(System.Windows.DependencyObject dependencyObject = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x115 bytes Telerik.Windows.Controls!Telerik.Windows.PropertyMetadata.Create.AnonymousMethod(System.Windows.DependencyObject d = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x266 bytes System.Windows.dll!System.Windows.DependencyObject.RaisePropertyChangeNotifications(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object newValue = true, object oldValue = false) + 0xb0 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true, bool allowReadOnlySet = false, bool isSetByStyle = false, bool isSetByBuiltInStyle = false, System.Windows.PropertyInvalidationReason reason = SetValue) + 0xb06 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x31 bytes System.Windows.dll!System.Windows.DependencyObject.SetValue(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x29 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrent.set(bool value = true) + 0x58 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewRow.UpdateCurrentCell() + 0xc3 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.OnCurrentCellInfoChanged(Telerik.Windows.Controls.GridViewCellInfo currentCell = {Telerik.Windows.Controls.GridViewCellInfo}) + 0x11f bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.CurrentCellInfo.set(Telerik.Windows.Controls.GridViewCellInfo value = {Telerik.Windows.Controls.GridViewCellInfo}) + 0xf9 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrentChanged(System.Windows.DependencyObject dependencyObject = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x115 bytes Telerik.Windows.Controls!Telerik.Windows.PropertyMetadata.Create.AnonymousMethod(System.Windows.DependencyObject d = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x266 bytes System.Windows.dll!System.Windows.DependencyObject.RaisePropertyChangeNotifications(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object newValue = true, object oldValue = false) + 0xb0 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true, bool allowReadOnlySet = false, bool isSetByStyle = false, bool isSetByBuiltInStyle = false, System.Windows.PropertyInvalidationReason reason = SetValue) + 0xb06 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x31 bytes System.Windows.dll!System.Windows.DependencyObject.SetValue(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x29 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrent.set(bool value = true) + 0x58 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewRow.UpdateCurrentCell() + 0xc3 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.OnCurrentCellInfoChanged(Telerik.Windows.Controls.GridViewCellInfo currentCell = {Telerik.Windows.Controls.GridViewCellInfo}) + 0x11f bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.CurrentCellInfo.set(Telerik.Windows.Controls.GridViewCellInfo value = {Telerik.Windows.Controls.GridViewCellInfo}) + 0xf9 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrentChanged(System.Windows.DependencyObject dependencyObject = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x115 bytes Telerik.Windows.Controls!Telerik.Windows.PropertyMetadata.Create.AnonymousMethod(System.Windows.DependencyObject d = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x266 bytes System.Windows.dll!System.Windows.DependencyObject.RaisePropertyChangeNotifications(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object newValue = true, object oldValue = false) + 0xb0 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true, bool allowReadOnlySet = false, bool isSetByStyle = false, bool isSetByBuiltInStyle = false, System.Windows.PropertyInvalidationReason reason = SetValue) + 0xb06 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x31 bytes System.Windows.dll!System.Windows.DependencyObject.SetValue(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x29 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrent.set(bool value = true) + 0x58 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewRow.UpdateCurrentCell() + 0xc3 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.OnCurrentCellInfoChanged(Telerik.Windows.Controls.GridViewCellInfo currentCell = {Telerik.Windows.Controls.GridViewCellInfo}) + 0x11f bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.CurrentCellInfo.set(Telerik.Windows.Controls.GridViewCellInfo value = {Telerik.Windows.Controls.GridViewCellInfo}) + 0xf9 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrentChanged(System.Windows.DependencyObject dependencyObject = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x115 bytes Telerik.Windows.Controls!Telerik.Windows.PropertyMetadata.Create.AnonymousMethod(System.Windows.DependencyObject d = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x266 bytes System.Windows.dll!System.Windows.DependencyObject.RaisePropertyChangeNotifications(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object newValue = true, object oldValue = false) + 0xb0 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true, bool allowReadOnlySet = false, bool isSetByStyle = false, bool isSetByBuiltInStyle = false, System.Windows.PropertyInvalidationReason reason = SetValue) + 0xb06 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x31 bytes System.Windows.dll!System.Windows.DependencyObject.SetValue(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x29 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrent.set(bool value = true) + 0x58 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewRow.UpdateCurrentCell() + 0xc3 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.OnCurrentCellInfoChanged(Telerik.Windows.Controls.GridViewCellInfo currentCell = {Telerik.Windows.Controls.GridViewCellInfo}) + 0x11f bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.CurrentCellInfo.set(Telerik.Windows.Controls.GridViewCellInfo value = {Telerik.Windows.Controls.GridViewCellInfo}) + 0xf9 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrentChanged(System.Windows.DependencyObject dependencyObject = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x115 bytes Telerik.Windows.Controls!Telerik.Windows.PropertyMetadata.Create.AnonymousMethod(System.Windows.DependencyObject d = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x266 bytes System.Windows.dll!System.Windows.DependencyObject.RaisePropertyChangeNotifications(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object newValue = true, object oldValue = false) + 0xb0 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true, bool allowReadOnlySet = false, bool isSetByStyle = false, bool isSetByBuiltInStyle = false, System.Windows.PropertyInvalidationReason reason = SetValue) + 0xb06 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x31 bytes System.Windows.dll!System.Windows.DependencyObject.SetValue(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x29 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrent.set(bool value = true) + 0x58 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewRow.UpdateCurrentCell() + 0xc3 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.OnCurrentCellInfoChanged(Telerik.Windows.Controls.GridViewCellInfo currentCell = {Telerik.Windows.Controls.GridViewCellInfo}) + 0x11f bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.CurrentCellInfo.set(Telerik.Windows.Controls.GridViewCellInfo value = {Telerik.Windows.Controls.GridViewCellInfo}) + 0xf9 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrentChanged(System.Windows.DependencyObject dependencyObject = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x115 bytes Telerik.Windows.Controls!Telerik.Windows.PropertyMetadata.Create.AnonymousMethod(System.Windows.DependencyObject d = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x266 bytes System.Windows.dll!System.Windows.DependencyObject.RaisePropertyChangeNotifications(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object newValue = true, object oldValue = false) + 0xb0 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true, bool allowReadOnlySet = false, bool isSetByStyle = false, bool isSetByBuiltInStyle = false, System.Windows.PropertyInvalidationReason reason = SetValue) + 0xb06 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x31 bytes System.Windows.dll!System.Windows.DependencyObject.SetValue(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x29 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrent.set(bool value = true) + 0x58 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewRow.UpdateCurrentCell() + 0xc3 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.OnCurrentCellInfoChanged(Telerik.Windows.Controls.GridViewCellInfo currentCell = {Telerik.Windows.Controls.GridViewCellInfo}) + 0x11f bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.CurrentCellInfo.set(Telerik.Windows.Controls.GridViewCellInfo value = {Telerik.Windows.Controls.GridViewCellInfo}) + 0xf9 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrentChanged(System.Windows.DependencyObject dependencyObject = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x115 bytes Telerik.Windows.Controls!Telerik.Windows.PropertyMetadata.Create.AnonymousMethod(System.Windows.DependencyObject d = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x266 bytes System.Windows.dll!System.Windows.DependencyObject.RaisePropertyChangeNotifications(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object newValue = true, object oldValue = false) + 0xb0 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true, bool allowReadOnlySet = false, bool isSetByStyle = false, bool isSetByBuiltInStyle = false, System.Windows.PropertyInvalidationReason reason = SetValue) + 0xb06 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x31 bytes System.Windows.dll!System.Windows.DependencyObject.SetValue(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x29 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrent.set(bool value = true) + 0x58 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewRow.UpdateCurrentCell() + 0xc3 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.OnCurrentCellInfoChanged(Telerik.Windows.Controls.GridViewCellInfo currentCell = {Telerik.Windows.Controls.GridViewCellInfo}) + 0x11f bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.CurrentCellInfo.set(Telerik.Windows.Controls.GridViewCellInfo value = {Telerik.Windows.Controls.GridViewCellInfo}) + 0xf9 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrentChanged(System.Windows.DependencyObject dependencyObject = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x115 bytes Telerik.Windows.Controls!Telerik.Windows.PropertyMetadata.Create.AnonymousMethod(System.Windows.DependencyObject d = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x266 bytes System.Windows.dll!System.Windows.DependencyObject.RaisePropertyChangeNotifications(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object newValue = true, object oldValue = false) + 0xb0 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true, bool allowReadOnlySet = false, bool isSetByStyle = false, bool isSetByBuiltInStyle = false, System.Windows.PropertyInvalidationReason reason = SetValue) + 0xb06 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x31 bytes System.Windows.dll!System.Windows.DependencyObject.SetValue(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x29 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrent.set(bool value = true) + 0x58 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewRow.UpdateCurrentCell() + 0xc3 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.OnCurrentCellInfoChanged(Telerik.Windows.Controls.GridViewCellInfo currentCell = {Telerik.Windows.Controls.GridViewCellInfo}) + 0x11f bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.CurrentCellInfo.set(Telerik.Windows.Controls.GridViewCellInfo value = {Telerik.Windows.Controls.GridViewCellInfo}) + 0xf9 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrentChanged(System.Windows.DependencyObject dependencyObject = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x115 bytes Telerik.Windows.Controls!Telerik.Windows.PropertyMetadata.Create.AnonymousMethod(System.Windows.DependencyObject d = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x266 bytes System.Windows.dll!System.Windows.DependencyObject.RaisePropertyChangeNotifications(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object newValue = true, object oldValue = false) + 0xb0 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true, bool allowReadOnlySet = false, bool isSetByStyle = false, bool isSetByBuiltInStyle = false, System.Windows.PropertyInvalidationReason reason = SetValue) + 0xb06 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x31 bytes System.Windows.dll!System.Windows.DependencyObject.SetValue(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x29 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrent.set(bool value = true) + 0x58 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewRow.UpdateCurrentCell() + 0xc3 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.OnCurrentCellInfoChanged(Telerik.Windows.Controls.GridViewCellInfo currentCell = {Telerik.Windows.Controls.GridViewCellInfo}) + 0x11f bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.CurrentCellInfo.set(Telerik.Windows.Controls.GridViewCellInfo value = {Telerik.Windows.Controls.GridViewCellInfo}) + 0xf9 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrentChanged(System.Windows.DependencyObject dependencyObject = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x115 bytes Telerik.Windows.Controls!Telerik.Windows.PropertyMetadata.Create.AnonymousMethod(System.Windows.DependencyObject d = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x266 bytes System.Windows.dll!System.Windows.DependencyObject.RaisePropertyChangeNotifications(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object newValue = true, object oldValue = false) + 0xb0 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true, bool allowReadOnlySet = false, bool isSetByStyle = false, bool isSetByBuiltInStyle = false, System.Windows.PropertyInvalidationReason reason = SetValue) + 0xb06 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x31 bytes System.Windows.dll!System.Windows.DependencyObject.SetValue(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x29 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrent.set(bool value = true) + 0x58 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewRow.UpdateCurrentCell() + 0xc3 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.OnCurrentCellInfoChanged(Telerik.Windows.Controls.GridViewCellInfo currentCell = {Telerik.Windows.Controls.GridViewCellInfo}) + 0x11f bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.CurrentCellInfo.set(Telerik.Windows.Controls.GridViewCellInfo value = {Telerik.Windows.Controls.GridViewCellInfo}) + 0xf9 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrentChanged(System.Windows.DependencyObject dependencyObject = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x115 bytes Telerik.Windows.Controls!Telerik.Windows.PropertyMetadata.Create.AnonymousMethod(System.Windows.DependencyObject d = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x266 bytes System.Windows.dll!System.Windows.DependencyObject.RaisePropertyChangeNotifications(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object newValue = true, object oldValue = false) + 0xb0 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true, bool allowReadOnlySet = false, bool isSetByStyle = false, bool isSetByBuiltInStyle = false, System.Windows.PropertyInvalidationReason reason = SetValue) + 0xb06 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x31 bytes System.Windows.dll!System.Windows.DependencyObject.SetValue(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x29 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrent.set(bool value = true) + 0x58 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewRow.UpdateCurrentCell() + 0xc3 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.OnCurrentCellInfoChanged(Telerik.Windows.Controls.GridViewCellInfo currentCell = {Telerik.Windows.Controls.GridViewCellInfo}) + 0x11f bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.CurrentCellInfo.set(Telerik.Windows.Controls.GridViewCellInfo value = {Telerik.Windows.Controls.GridViewCellInfo}) + 0xf9 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrentChanged(System.Windows.DependencyObject dependencyObject = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x115 bytes Telerik.Windows.Controls!Telerik.Windows.PropertyMetadata.Create.AnonymousMethod(System.Windows.DependencyObject d = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x266 bytes System.Windows.dll!System.Windows.DependencyObject.RaisePropertyChangeNotifications(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object newValue = true, object oldValue = false) + 0xb0 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true, bool allowReadOnlySet = false, bool isSetByStyle = false, bool isSetByBuiltInStyle = false, System.Windows.PropertyInvalidationReason reason = SetValue) + 0xb06 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x31 bytes System.Windows.dll!System.Windows.DependencyObject.SetValue(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x29 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrent.set(bool value = true) + 0x58 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewRow.UpdateCurrentCell() + 0xc3 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.OnCurrentCellInfoChanged(Telerik.Windows.Controls.GridViewCellInfo currentCell = {Telerik.Windows.Controls.GridViewCellInfo}) + 0x11f bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.CurrentCellInfo.set(Telerik.Windows.Controls.GridViewCellInfo value = {Telerik.Windows.Controls.GridViewCellInfo}) + 0xf9 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrentChanged(System.Windows.DependencyObject dependencyObject = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x115 bytes Telerik.Windows.Controls!Telerik.Windows.PropertyMetadata.Create.AnonymousMethod(System.Windows.DependencyObject d = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x266 bytes System.Windows.dll!System.Windows.DependencyObject.RaisePropertyChangeNotifications(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object newValue = true, object oldValue = false) + 0xb0 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true, bool allowReadOnlySet = false, bool isSetByStyle = false, bool isSetByBuiltInStyle = false, System.Windows.PropertyInvalidationReason reason = SetValue) + 0xb06 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x31 bytes System.Windows.dll!System.Windows.DependencyObject.SetValue(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x29 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrent.set(bool value = true) + 0x58 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewRow.UpdateCurrentCell() + 0xc3 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.OnCurrentCellInfoChanged(Telerik.Windows.Controls.GridViewCellInfo currentCell = {Telerik.Windows.Controls.GridViewCellInfo}) + 0x11f bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.CurrentCellInfo.set(Telerik.Windows.Controls.GridViewCellInfo value = {Telerik.Windows.Controls.GridViewCellInfo}) + 0xf9 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrentChanged(System.Windows.DependencyObject dependencyObject = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x115 bytes Telerik.Windows.Controls!Telerik.Windows.PropertyMetadata.Create.AnonymousMethod(System.Windows.DependencyObject d = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x266 bytes System.Windows.dll!System.Windows.DependencyObject.RaisePropertyChangeNotifications(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object newValue = true, object oldValue = false) + 0xb0 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true, bool allowReadOnlySet = false, bool isSetByStyle = false, bool isSetByBuiltInStyle = false, System.Windows.PropertyInvalidationReason reason = SetValue) + 0xb06 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x31 bytes System.Windows.dll!System.Windows.DependencyObject.SetValue(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x29 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrent.set(bool value = true) + 0x58 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewRow.UpdateCurrentCell() + 0xc3 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.OnCurrentCellInfoChanged(Telerik.Windows.Controls.GridViewCellInfo currentCell = {Telerik.Windows.Controls.GridViewCellInfo}) + 0x11f bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.CurrentCellInfo.set(Telerik.Windows.Controls.GridViewCellInfo value = {Telerik.Windows.Controls.GridViewCellInfo}) + 0xf9 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrentChanged(System.Windows.DependencyObject dependencyObject = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x115 bytes Telerik.Windows.Controls!Telerik.Windows.PropertyMetadata.Create.AnonymousMethod(System.Windows.DependencyObject d = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x266 bytes System.Windows.dll!System.Windows.DependencyObject.RaisePropertyChangeNotifications(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object newValue = true, object oldValue = false) + 0xb0 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true, bool allowReadOnlySet = false, bool isSetByStyle = false, bool isSetByBuiltInStyle = false, System.Windows.PropertyInvalidationReason reason = SetValue) + 0xb06 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x31 bytes System.Windows.dll!System.Windows.DependencyObject.SetValue(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x29 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrent.set(bool value = true) + 0x58 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewRow.UpdateCurrentCell() + 0xc3 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.OnCurrentCellInfoChanged(Telerik.Windows.Controls.GridViewCellInfo currentCell = {Telerik.Windows.Controls.GridViewCellInfo}) + 0x11f bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.CurrentCellInfo.set(Telerik.Windows.Controls.GridViewCellInfo value = {Telerik.Windows.Controls.GridViewCellInfo}) + 0xf9 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrentChanged(System.Windows.DependencyObject dependencyObject = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x115 bytes Telerik.Windows.Controls!Telerik.Windows.PropertyMetadata.Create.AnonymousMethod(System.Windows.DependencyObject d = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x266 bytes System.Windows.dll!System.Windows.DependencyObject.RaisePropertyChangeNotifications(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object newValue = true, object oldValue = false) + 0xb0 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true, bool allowReadOnlySet = false, bool isSetByStyle = false, bool isSetByBuiltInStyle = false, System.Windows.PropertyInvalidationReason reason = SetValue) + 0xb06 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x31 bytes System.Windows.dll!System.Windows.DependencyObject.SetValue(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x29 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrent.set(bool value = true) + 0x58 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewRow.UpdateCurrentCell() + 0xc3 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.OnCurrentCellInfoChanged(Telerik.Windows.Controls.GridViewCellInfo currentCell = {Telerik.Windows.Controls.GridViewCellInfo}) + 0x11f bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.CurrentCellInfo.set(Telerik.Windows.Controls.GridViewCellInfo value = {Telerik.Windows.Controls.GridViewCellInfo}) + 0xf9 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrentChanged(System.Windows.DependencyObject dependencyObject = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x115 bytes Telerik.Windows.Controls!Telerik.Windows.PropertyMetadata.Create.AnonymousMethod(System.Windows.DependencyObject d = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x266 bytes System.Windows.dll!System.Windows.DependencyObject.RaisePropertyChangeNotifications(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object newValue = true, object oldValue = false) + 0xb0 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true, bool allowReadOnlySet = false, bool isSetByStyle = false, bool isSetByBuiltInStyle = false, System.Windows.PropertyInvalidationReason reason = SetValue) + 0xb06 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x31 bytes System.Windows.dll!System.Windows.DependencyObject.SetValue(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x29 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrent.set(bool value = true) + 0x58 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewRow.UpdateCurrentCell() + 0xc3 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.OnCurrentCellInfoChanged(Telerik.Windows.Controls.GridViewCellInfo currentCell = {Telerik.Windows.Controls.GridViewCellInfo}) + 0x11f bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.CurrentCellInfo.set(Telerik.Windows.Controls.GridViewCellInfo value = {Telerik.Windows.Controls.GridViewCellInfo}) + 0xf9 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrentChanged(System.Windows.DependencyObject dependencyObject = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x115 bytes Telerik.Windows.Controls!Telerik.Windows.PropertyMetadata.Create.AnonymousMethod(System.Windows.DependencyObject d = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x266 bytes System.Windows.dll!System.Windows.DependencyObject.RaisePropertyChangeNotifications(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object newValue = true, object oldValue = false) + 0xb0 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true, bool allowReadOnlySet = false, bool isSetByStyle = false, bool isSetByBuiltInStyle = false, System.Windows.PropertyInvalidationReason reason = SetValue) + 0xb06 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x31 bytes System.Windows.dll!System.Windows.DependencyObject.SetValue(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x29 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrent.set(bool value = true) + 0x58 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewRow.UpdateCurrentCell() + 0xc3 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.OnCurrentCellInfoChanged(Telerik.Windows.Controls.GridViewCellInfo currentCell = {Telerik.Windows.Controls.GridViewCellInfo}) + 0x11f bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.CurrentCellInfo.set(Telerik.Windows.Controls.GridViewCellInfo value = {Telerik.Windows.Controls.GridViewCellInfo}) + 0xf9 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrentChanged(System.Windows.DependencyObject dependencyObject = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x115 bytes Telerik.Windows.Controls!Telerik.Windows.PropertyMetadata.Create.AnonymousMethod(System.Windows.DependencyObject d = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x266 bytes System.Windows.dll!System.Windows.DependencyObject.RaisePropertyChangeNotifications(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object newValue = true, object oldValue = false) + 0xb0 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true, bool allowReadOnlySet = false, bool isSetByStyle = false, bool isSetByBuiltInStyle = false, System.Windows.PropertyInvalidationReason reason = SetValue) + 0xb06 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x31 bytes System.Windows.dll!System.Windows.DependencyObject.SetValue(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x29 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrent.set(bool value = true) + 0x58 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewRow.UpdateCurrentCell() + 0xc3 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.OnCurrentCellInfoChanged(Telerik.Windows.Controls.GridViewCellInfo currentCell = {Telerik.Windows.Controls.GridViewCellInfo}) + 0x11f bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.CurrentCellInfo.set(Telerik.Windows.Controls.GridViewCellInfo value = {Telerik.Windows.Controls.GridViewCellInfo}) + 0xf9 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrentChanged(System.Windows.DependencyObject dependencyObject = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x115 bytes Telerik.Windows.Controls!Telerik.Windows.PropertyMetadata.Create.AnonymousMethod(System.Windows.DependencyObject d = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x266 bytes System.Windows.dll!System.Windows.DependencyObject.RaisePropertyChangeNotifications(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object newValue = true, object oldValue = false) + 0xb0 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true, bool allowReadOnlySet = false, bool isSetByStyle = false, bool isSetByBuiltInStyle = false, System.Windows.PropertyInvalidationReason reason = SetValue) + 0xb06 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x31 bytes System.Windows.dll!System.Windows.DependencyObject.SetValue(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x29 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrent.set(bool value = true) + 0x58 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewRow.UpdateCurrentCell() + 0xc3 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.OnCurrentCellInfoChanged(Telerik.Windows.Controls.GridViewCellInfo currentCell = {Telerik.Windows.Controls.GridViewCellInfo}) + 0x11f bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.CurrentCellInfo.set(Telerik.Windows.Controls.GridViewCellInfo value = {Telerik.Windows.Controls.GridViewCellInfo}) + 0xf9 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrentChanged(System.Windows.DependencyObject dependencyObject = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x115 bytes Telerik.Windows.Controls!Telerik.Windows.PropertyMetadata.Create.AnonymousMethod(System.Windows.DependencyObject d = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x266 bytes System.Windows.dll!System.Windows.DependencyObject.RaisePropertyChangeNotifications(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object newValue = true, object oldValue = false) + 0xb0 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true, bool allowReadOnlySet = false, bool isSetByStyle = false, bool isSetByBuiltInStyle = false, System.Windows.PropertyInvalidationReason reason = SetValue) + 0xb06 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x31 bytes System.Windows.dll!System.Windows.DependencyObject.SetValue(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x29 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrent.set(bool value = true) + 0x58 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewRow.UpdateCurrentCell() + 0xc3 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.OnCurrentCellInfoChanged(Telerik.Windows.Controls.GridViewCellInfo currentCell = {Telerik.Windows.Controls.GridViewCellInfo}) + 0x11f bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.CurrentCellInfo.set(Telerik.Windows.Controls.GridViewCellInfo value = {Telerik.Windows.Controls.GridViewCellInfo}) + 0xf9 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrentChanged(System.Windows.DependencyObject dependencyObject = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x115 bytes Telerik.Windows.Controls!Telerik.Windows.PropertyMetadata.Create.AnonymousMethod(System.Windows.DependencyObject d = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x266 bytes System.Windows.dll!System.Windows.DependencyObject.RaisePropertyChangeNotifications(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object newValue = true, object oldValue = false) + 0xb0 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true, bool allowReadOnlySet = false, bool isSetByStyle = false, bool isSetByBuiltInStyle = false, System.Windows.PropertyInvalidationReason reason = SetValue) + 0xb06 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x31 bytes System.Windows.dll!System.Windows.DependencyObject.SetValue(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x29 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrent.set(bool value = true) + 0x58 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewRow.UpdateCurrentCell() + 0xc3 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.OnCurrentCellInfoChanged(Telerik.Windows.Controls.GridViewCellInfo currentCell = {Telerik.Windows.Controls.GridViewCellInfo}) + 0x11f bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.CurrentCellInfo.set(Telerik.Windows.Controls.GridViewCellInfo value = {Telerik.Windows.Controls.GridViewCellInfo}) + 0xf9 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrentChanged(System.Windows.DependencyObject dependencyObject = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x115 bytes Telerik.Windows.Controls!Telerik.Windows.PropertyMetadata.Create.AnonymousMethod(System.Windows.DependencyObject d = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x266 bytes System.Windows.dll!System.Windows.DependencyObject.RaisePropertyChangeNotifications(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object newValue = true, object oldValue = false) + 0xb0 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true, bool allowReadOnlySet = false, bool isSetByStyle = false, bool isSetByBuiltInStyle = false, System.Windows.PropertyInvalidationReason reason = SetValue) + 0xb06 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x31 bytes System.Windows.dll!System.Windows.DependencyObject.SetValue(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x29 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrent.set(bool value = true) + 0x58 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewRow.UpdateCurrentCell() + 0xc3 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.OnCurrentCellInfoChanged(Telerik.Windows.Controls.GridViewCellInfo currentCell = {Telerik.Windows.Controls.GridViewCellInfo}) + 0x11f bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.CurrentCellInfo.set(Telerik.Windows.Controls.GridViewCellInfo value = {Telerik.Windows.Controls.GridViewCellInfo}) + 0xf9 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrentChanged(System.Windows.DependencyObject dependencyObject = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x115 bytes Telerik.Windows.Controls!Telerik.Windows.PropertyMetadata.Create.AnonymousMethod(System.Windows.DependencyObject d = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x266 bytes System.Windows.dll!System.Windows.DependencyObject.RaisePropertyChangeNotifications(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object newValue = true, object oldValue = false) + 0xb0 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true, bool allowReadOnlySet = false, bool isSetByStyle = false, bool isSetByBuiltInStyle = false, System.Windows.PropertyInvalidationReason reason = SetValue) + 0xb06 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x31 bytes System.Windows.dll!System.Windows.DependencyObject.SetValue(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x29 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrent.set(bool value = true) + 0x58 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewRow.UpdateCurrentCell() + 0xc3 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.OnCurrentCellInfoChanged(Telerik.Windows.Controls.GridViewCellInfo currentCell = {Telerik.Windows.Controls.GridViewCellInfo}) + 0x11f bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.CurrentCellInfo.set(Telerik.Windows.Controls.GridViewCellInfo value = {Telerik.Windows.Controls.GridViewCellInfo}) + 0xf9 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrentChanged(System.Windows.DependencyObject dependencyObject = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x115 bytes Telerik.Windows.Controls!Telerik.Windows.PropertyMetadata.Create.AnonymousMethod(System.Windows.DependencyObject d = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x266 bytes System.Windows.dll!System.Windows.DependencyObject.RaisePropertyChangeNotifications(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object newValue = true, object oldValue = false) + 0xb0 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true, bool allowReadOnlySet = false, bool isSetByStyle = false, bool isSetByBuiltInStyle = false, System.Windows.PropertyInvalidationReason reason = SetValue) + 0xb06 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x31 bytes System.Windows.dll!System.Windows.DependencyObject.SetValue(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x29 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrent.set(bool value = true) + 0x58 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewRow.UpdateCurrentCell() + 0xc3 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.OnCurrentCellInfoChanged(Telerik.Windows.Controls.GridViewCellInfo currentCell = {Telerik.Windows.Controls.GridViewCellInfo}) + 0x11f bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.CurrentCellInfo.set(Telerik.Windows.Controls.GridViewCellInfo value = {Telerik.Windows.Controls.GridViewCellInfo}) + 0xf9 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrentChanged(System.Windows.DependencyObject dependencyObject = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x115 bytes Telerik.Windows.Controls!Telerik.Windows.PropertyMetadata.Create.AnonymousMethod(System.Windows.DependencyObject d = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x266 bytes System.Windows.dll!System.Windows.DependencyObject.RaisePropertyChangeNotifications(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object newValue = true, object oldValue = false) + 0xb0 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true, bool allowReadOnlySet = false, bool isSetByStyle = false, bool isSetByBuiltInStyle = false, System.Windows.PropertyInvalidationReason reason = SetValue) + 0xb06 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x31 bytes System.Windows.dll!System.Windows.DependencyObject.SetValue(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x29 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrent.set(bool value = true) + 0x58 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewRow.UpdateCurrentCell() + 0xc3 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.OnCurrentCellInfoChanged(Telerik.Windows.Controls.GridViewCellInfo currentCell = {Telerik.Windows.Controls.GridViewCellInfo}) + 0x11f bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.CurrentCellInfo.set(Telerik.Windows.Controls.GridViewCellInfo value = {Telerik.Windows.Controls.GridViewCellInfo}) + 0xf9 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrentChanged(System.Windows.DependencyObject dependencyObject = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x115 bytes Telerik.Windows.Controls!Telerik.Windows.PropertyMetadata.Create.AnonymousMethod(System.Windows.DependencyObject d = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x266 bytes System.Windows.dll!System.Windows.DependencyObject.RaisePropertyChangeNotifications(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object newValue = true, object oldValue = false) + 0xb0 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true, bool allowReadOnlySet = false, bool isSetByStyle = false, bool isSetByBuiltInStyle = false, System.Windows.PropertyInvalidationReason reason = SetValue) + 0xb06 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x31 bytes System.Windows.dll!System.Windows.DependencyObject.SetValue(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x29 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrent.set(bool value = true) + 0x58 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewRow.UpdateCurrentCell() + 0xc3 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.OnCurrentCellInfoChanged(Telerik.Windows.Controls.GridViewCellInfo currentCell = {Telerik.Windows.Controls.GridViewCellInfo}) + 0x11f bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.CurrentCellInfo.set(Telerik.Windows.Controls.GridViewCellInfo value = {Telerik.Windows.Controls.GridViewCellInfo}) + 0xf9 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrentChanged(System.Windows.DependencyObject dependencyObject = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x115 bytes Telerik.Windows.Controls!Telerik.Windows.PropertyMetadata.Create.AnonymousMethod(System.Windows.DependencyObject d = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x266 bytes System.Windows.dll!System.Windows.DependencyObject.RaisePropertyChangeNotifications(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object newValue = true, object oldValue = false) + 0xb0 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true, bool allowReadOnlySet = false, bool isSetByStyle = false, bool isSetByBuiltInStyle = false, System.Windows.PropertyInvalidationReason reason = SetValue) + 0xb06 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x31 bytes System.Windows.dll!System.Windows.DependencyObject.SetValue(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x29 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrent.set(bool value = true) + 0x58 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewRow.UpdateCurrentCell() + 0xc3 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.OnCurrentCellInfoChanged(Telerik.Windows.Controls.GridViewCellInfo currentCell = {Telerik.Windows.Controls.GridViewCellInfo}) + 0x11f bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.CurrentCellInfo.set(Telerik.Windows.Controls.GridViewCellInfo value = {Telerik.Windows.Controls.GridViewCellInfo}) + 0xf9 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrentChanged(System.Windows.DependencyObject dependencyObject = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x115 bytes Telerik.Windows.Controls!Telerik.Windows.PropertyMetadata.Create.AnonymousMethod(System.Windows.DependencyObject d = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x266 bytes System.Windows.dll!System.Windows.DependencyObject.RaisePropertyChangeNotifications(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object newValue = true, object oldValue = false) + 0xb0 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true, bool allowReadOnlySet = false, bool isSetByStyle = false, bool isSetByBuiltInStyle = false, System.Windows.PropertyInvalidationReason reason = SetValue) + 0xb06 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x31 bytes System.Windows.dll!System.Windows.DependencyObject.SetValue(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x29 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrent.set(bool value = true) + 0x58 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewRow.UpdateCurrentCell() + 0xc3 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.OnCurrentCellInfoChanged(Telerik.Windows.Controls.GridViewCellInfo currentCell = {Telerik.Windows.Controls.GridViewCellInfo}) + 0x11f bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.CurrentCellInfo.set(Telerik.Windows.Controls.GridViewCellInfo value = {Telerik.Windows.Controls.GridViewCellInfo}) + 0xf9 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrentChanged(System.Windows.DependencyObject dependencyObject = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x115 bytes Telerik.Windows.Controls!Telerik.Windows.PropertyMetadata.Create.AnonymousMethod(System.Windows.DependencyObject d = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x266 bytes System.Windows.dll!System.Windows.DependencyObject.RaisePropertyChangeNotifications(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object newValue = true, object oldValue = false) + 0xb0 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true, bool allowReadOnlySet = false, bool isSetByStyle = false, bool isSetByBuiltInStyle = false, System.Windows.PropertyInvalidationReason reason = SetValue) + 0xb06 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x31 bytes System.Windows.dll!System.Windows.DependencyObject.SetValue(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x29 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrent.set(bool value = true) + 0x58 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewRow.UpdateCurrentCell() + 0xc3 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.OnCurrentCellInfoChanged(Telerik.Windows.Controls.GridViewCellInfo currentCell = {Telerik.Windows.Controls.GridViewCellInfo}) + 0x11f bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.CurrentCellInfo.set(Telerik.Windows.Controls.GridViewCellInfo value = {Telerik.Windows.Controls.GridViewCellInfo}) + 0xf9 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrentChanged(System.Windows.DependencyObject dependencyObject = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x115 bytes Telerik.Windows.Controls!Telerik.Windows.PropertyMetadata.Create.AnonymousMethod(System.Windows.DependencyObject d = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x266 bytes System.Windows.dll!System.Windows.DependencyObject.RaisePropertyChangeNotifications(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object newValue = true, object oldValue = false) + 0xb0 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true, bool allowReadOnlySet = false, bool isSetByStyle = false, bool isSetByBuiltInStyle = false, System.Windows.PropertyInvalidationReason reason = SetValue) + 0xb06 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x31 bytes System.Windows.dll!System.Windows.DependencyObject.SetValue(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x29 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrent.set(bool value = true) + 0x58 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewRow.UpdateCurrentCell() + 0xc3 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.OnCurrentCellInfoChanged(Telerik.Windows.Controls.GridViewCellInfo currentCell = {Telerik.Windows.Controls.GridViewCellInfo}) + 0x11f bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.CurrentCellInfo.set(Telerik.Windows.Controls.GridViewCellInfo value = {Telerik.Windows.Controls.GridViewCellInfo}) + 0xf9 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrentChanged(System.Windows.DependencyObject dependencyObject = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x115 bytes Telerik.Windows.Controls!Telerik.Windows.PropertyMetadata.Create.AnonymousMethod(System.Windows.DependencyObject d = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x266 bytes System.Windows.dll!System.Windows.DependencyObject.RaisePropertyChangeNotifications(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object newValue = true, object oldValue = false) + 0xb0 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true, bool allowReadOnlySet = false, bool isSetByStyle = false, bool isSetByBuiltInStyle = false, System.Windows.PropertyInvalidationReason reason = SetValue) + 0xb06 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x31 bytes System.Windows.dll!System.Windows.DependencyObject.SetValue(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x29 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrent.set(bool value = true) + 0x58 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewRow.UpdateCurrentCell() + 0xc3 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.OnCurrentCellInfoChanged(Telerik.Windows.Controls.GridViewCellInfo currentCell = {Telerik.Windows.Controls.GridViewCellInfo}) + 0x11f bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.CurrentCellInfo.set(Telerik.Windows.Controls.GridViewCellInfo value = {Telerik.Windows.Controls.GridViewCellInfo}) + 0xf9 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrentChanged(System.Windows.DependencyObject dependencyObject = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x115 bytes Telerik.Windows.Controls!Telerik.Windows.PropertyMetadata.Create.AnonymousMethod(System.Windows.DependencyObject d = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x266 bytes System.Windows.dll!System.Windows.DependencyObject.RaisePropertyChangeNotifications(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object newValue = true, object oldValue = false) + 0xb0 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true, bool allowReadOnlySet = false, bool isSetByStyle = false, bool isSetByBuiltInStyle = false, System.Windows.PropertyInvalidationReason reason = SetValue) + 0xb06 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x31 bytes System.Windows.dll!System.Windows.DependencyObject.SetValue(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x29 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrent.set(bool value = true) + 0x58 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewRow.UpdateCurrentCell() + 0xc3 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.OnCurrentCellInfoChanged(Telerik.Windows.Controls.GridViewCellInfo currentCell = {Telerik.Windows.Controls.GridViewCellInfo}) + 0x11f bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.CurrentCellInfo.set(Telerik.Windows.Controls.GridViewCellInfo value = {Telerik.Windows.Controls.GridViewCellInfo}) + 0xf9 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrentChanged(System.Windows.DependencyObject dependencyObject = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x115 bytes Telerik.Windows.Controls!Telerik.Windows.PropertyMetadata.Create.AnonymousMethod(System.Windows.DependencyObject d = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x266 bytes System.Windows.dll!System.Windows.DependencyObject.RaisePropertyChangeNotifications(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object newValue = true, object oldValue = false) + 0xb0 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true, bool allowReadOnlySet = false, bool isSetByStyle = false, bool isSetByBuiltInStyle = false, System.Windows.PropertyInvalidationReason reason = SetValue) + 0xb06 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x31 bytes System.Windows.dll!System.Windows.DependencyObject.SetValue(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x29 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrent.set(bool value = true) + 0x58 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewRow.UpdateCurrentCell() + 0xc3 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.OnCurrentCellInfoChanged(Telerik.Windows.Controls.GridViewCellInfo currentCell = {Telerik.Windows.Controls.GridViewCellInfo}) + 0x11f bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.CurrentCellInfo.set(Telerik.Windows.Controls.GridViewCellInfo value = {Telerik.Windows.Controls.GridViewCellInfo}) + 0xf9 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrentChanged(System.Windows.DependencyObject dependencyObject = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x115 bytes Telerik.Windows.Controls!Telerik.Windows.PropertyMetadata.Create.AnonymousMethod(System.Windows.DependencyObject d = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x266 bytes System.Windows.dll!System.Windows.DependencyObject.RaisePropertyChangeNotifications(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object newValue = true, object oldValue = false) + 0xb0 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true, bool allowReadOnlySet = false, bool isSetByStyle = false, bool isSetByBuiltInStyle = false, System.Windows.PropertyInvalidationReason reason = SetValue) + 0xb06 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x31 bytes System.Windows.dll!System.Windows.DependencyObject.SetValue(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x29 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrent.set(bool value = true) + 0x58 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewRow.UpdateCurrentCell() + 0xc3 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.OnCurrentCellInfoChanged(Telerik.Windows.Controls.GridViewCellInfo currentCell = {Telerik.Windows.Controls.GridViewCellInfo}) + 0x11f bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.CurrentCellInfo.set(Telerik.Windows.Controls.GridViewCellInfo value = {Telerik.Windows.Controls.GridViewCellInfo}) + 0xf9 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrentChanged(System.Windows.DependencyObject dependencyObject = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x115 bytes Telerik.Windows.Controls!Telerik.Windows.PropertyMetadata.Create.AnonymousMethod(System.Windows.DependencyObject d = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x266 bytes System.Windows.dll!System.Windows.DependencyObject.RaisePropertyChangeNotifications(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object newValue = true, object oldValue = false) + 0xb0 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true, bool allowReadOnlySet = false, bool isSetByStyle = false, bool isSetByBuiltInStyle = false, System.Windows.PropertyInvalidationReason reason = SetValue) + 0xb06 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x31 bytes System.Windows.dll!System.Windows.DependencyObject.SetValue(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x29 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrent.set(bool value = true) + 0x58 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewRow.UpdateCurrentCell() + 0xc3 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.OnCurrentCellInfoChanged(Telerik.Windows.Controls.GridViewCellInfo currentCell = {Telerik.Windows.Controls.GridViewCellInfo}) + 0x11f bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.CurrentCellInfo.set(Telerik.Windows.Controls.GridViewCellInfo value = {Telerik.Windows.Controls.GridViewCellInfo}) + 0xf9 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrentChanged(System.Windows.DependencyObject dependencyObject = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x115 bytes Telerik.Windows.Controls!Telerik.Windows.PropertyMetadata.Create.AnonymousMethod(System.Windows.DependencyObject d = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x266 bytes System.Windows.dll!System.Windows.DependencyObject.RaisePropertyChangeNotifications(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object newValue = true, object oldValue = false) + 0xb0 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true, bool allowReadOnlySet = false, bool isSetByStyle = false, bool isSetByBuiltInStyle = false, System.Windows.PropertyInvalidationReason reason = SetValue) + 0xb06 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x31 bytes System.Windows.dll!System.Windows.DependencyObject.SetValue(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x29 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrent.set(bool value = true) + 0x58 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewRow.UpdateCurrentCell() + 0xc3 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.OnCurrentCellInfoChanged(Telerik.Windows.Controls.GridViewCellInfo currentCell = {Telerik.Windows.Controls.GridViewCellInfo}) + 0x11f bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.CurrentCellInfo.set(Telerik.Windows.Controls.GridViewCellInfo value = {Telerik.Windows.Controls.GridViewCellInfo}) + 0xf9 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrentChanged(System.Windows.DependencyObject dependencyObject = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x115 bytes Telerik.Windows.Controls!Telerik.Windows.PropertyMetadata.Create.AnonymousMethod(System.Windows.DependencyObject d = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x266 bytes System.Windows.dll!System.Windows.DependencyObject.RaisePropertyChangeNotifications(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object newValue = true, object oldValue = false) + 0xb0 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true, bool allowReadOnlySet = false, bool isSetByStyle = false, bool isSetByBuiltInStyle = false, System.Windows.PropertyInvalidationReason reason = SetValue) + 0xb06 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x31 bytes System.Windows.dll!System.Windows.DependencyObject.SetValue(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x29 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrent.set(bool value = true) + 0x58 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewRow.UpdateCurrentCell() + 0xc3 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.OnCurrentCellInfoChanged(Telerik.Windows.Controls.GridViewCellInfo currentCell = {Telerik.Windows.Controls.GridViewCellInfo}) + 0x11f bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.CurrentCellInfo.set(Telerik.Windows.Controls.GridViewCellInfo value = {Telerik.Windows.Controls.GridViewCellInfo}) + 0xf9 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrentChanged(System.Windows.DependencyObject dependencyObject = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x115 bytes Telerik.Windows.Controls!Telerik.Windows.PropertyMetadata.Create.AnonymousMethod(System.Windows.DependencyObject d = {Telerik.Windows.Controls.GridView.GridViewCell}, System.Windows.DependencyPropertyChangedEventArgs e = {System.Windows.DependencyPropertyChangedEventArgs}) + 0x266 bytes System.Windows.dll!System.Windows.DependencyObject.RaisePropertyChangeNotifications(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object newValue = true, object oldValue = false) + 0xb0 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true, bool allowReadOnlySet = false, bool isSetByStyle = false, bool isSetByBuiltInStyle = false, System.Windows.PropertyInvalidationReason reason = SetValue) + 0xb06 bytes System.Windows.dll!System.Windows.DependencyObject.SetValueInternal(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x31 bytes System.Windows.dll!System.Windows.DependencyObject.SetValue(System.Windows.DependencyProperty dp = {System.Windows.CustomDependencyProperty}, object value = true) + 0x29 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewCell.IsCurrent.set(bool value = true) + 0x58 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewRow.UpdateCurrentCell() + 0xc3 bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.OnCurrentCellInfoChanged(Telerik.Windows.Controls.GridViewCellInfo currentCell = {Telerik.Windows.Controls.GridViewCellInfo}) + 0x11f bytes Telerik.Windows.Controls.GridView!Telerik.Windows.Controls.GridView.GridViewDataControl.CurrentCellInfo.set(Telerik.Windows.Controls.GridViewCellInfo value = {Telerik.Windows.Controls.GridViewCellInfo}) + 0xf9 bytes 0
Accepted
Hi Keith Stephens,
Could you please try your scenario with our latest internal build, since we've fixed a related bug recently?
Let me know if this doesn't help.
Greetings,
Nedyalko Nikolov
the Telerik team
Could you please try your scenario with our latest internal build, since we've fixed a related bug recently?
Let me know if this doesn't help.
Greetings,
Nedyalko Nikolov
the Telerik team
Do you want to have your say when we set our development plans?
Do you want to know when a feature you care about is added or when a bug fixed?
Explore the
Telerik Public Issue Tracking
system and vote to affect the priority of the items