-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Closed
Labels
needs more informationNot enough information has been provided. Please share more detail as requestedNot enough information has been provided. Please share more detail as requested
Description
- .NET Core Version: 3.0.100
- Windows version: Microsoft Windows 10.0.18362
- Does the bug reproduce also in WPF for .NET Framework 4.8?: not sure, but 4.7.2 had this bug also
- Is this bug related specifically to tooling in Visual Studio (e.g. XAML Designer, Code editing, etc...)? No
Problem description:
WPF App crashes sometimes randomly with KeyNotFoundException
Actual behavior:
System.Collections.Generic.KeyNotFoundException: The given key was not present in the dictionary.
at MS.Internal.WeakDictionary`2.get_Item(TKey key)
at System.Windows.Automation.Peers.ItemPeersStorage`1.get_Item(Object item)
at System.Windows.Automation.Peers.ItemsControlAutomationPeer.GetPeerFromWeakRefStorage(Object item)
at System.Windows.Automation.Peers.ItemsControlAutomationPeer.AddProxyToWeakRefStorage(WeakReference wr, ItemAutomationPeer itemPeer)
at System.Windows.Automation.Peers.ItemAutomationPeer.AddToParentProxyWeakRefCache()
at MS.Internal.Automation.ElementProxy.StaticWrap(AutomationPeer peer, AutomationPeer referencePeer)
at System.Windows.Automation.Peers.AutomationPeer.UpdateChildrenInternal(Int32 invalidateLimit)
at System.Windows.Automation.Peers.AutomationPeer.UpdateChildren()
at System.Windows.Automation.Peers.AutomationPeer.UpdateSubtree()
at System.Windows.Automation.Peers.AutomationPeer.UpdateSubtree()
at System.Windows.Automation.Peers.AutomationPeer.UpdateSubtree()
at System.Windows.Automation.Peers.AutomationPeer.UpdateSubtree()
at System.Windows.Automation.Peers.AutomationPeer.UpdateSubtree()
at System.Windows.Automation.Peers.AutomationPeer.UpdateSubtree()
at System.Windows.ContextLayoutManager.fireAutomationEvents()
at System.Windows.ContextLayoutManager.UpdateLayout()
at System.Windows.UIElement.UpdateLayout()
at System.Windows.Controls.VirtualizingStackPanel.<>c__DisplayClass94_0.<InitializeViewport>b__0()
at System.Windows.Threading.ExceptionWrapper.InternalRealCall(Delegate callback, Object args, Int32 numArgs)
at System.Windows.Threading.ExceptionWrapper.TryCatchWhen(Object source, Delegate callback, Object args, Int32 numArgs, Delegate catchHandler)
Expected behavior:
No error because this repo already has fix of .NET Framework 4.8:
Lines 601 to 607 in 48990f1
| if (_usesHashCode) | |
| { | |
| if (_hashtable == null || !_hashtable.ContainsKey(item)) | |
| return default(T); | |
| return _hashtable[item] as T; | |
| } |
Minimal repro:
I can't even understand where and why this happens so don't know how it can be reproduced
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
needs more informationNot enough information has been provided. Please share more detail as requestedNot enough information has been provided. Please share more detail as requested