Unplanned
Last Updated: 30 Apr 2026 15:34 by ADMIN
Created by: Nico
Comments: 1
Category: Border
Type: Bug Report
0

After upgrading to .NET MAUI 10.0.60, the app crashes on Windows with an unhandled exception when RadCollectionView renders items that use a ControlTemplate containing a RadBorder.

Exception:

System.Exception: Keine installierten Komponenten gefunden. (REGDB_E_CLASSNOTREG)
  at ABI.System.Collections.Generic.IListMethods`2.AppendDynamic(...)
  at Microsoft.UI.Xaml.Controls.UIElementCollection.Add(UIElement item)
  at Telerik.Maui.RadBorderExtensions.UpdateBorderContent(Border nativeBorder, IRadBorder border)
  at Telerik.Maui.Handlers.RadBorderHandler.MapContent(...)
  at Telerik.Maui.Controls.RadCollectionViewItemView.OnStyleChanged()
  ...

Root Cause:

MAUI PR #30047 introduced a call to view.Handler?.DisconnectHandler() inside ContentViewHandler.UpdateContent (Windows-only) before re-adding the content to the native panel. This disconnects and invalidates Telerik's RadBorderHandler WinRT object references. When RadBorderExtensions.UpdateBorderContent subsequently calls UIElementCollection.Add, the WinRT interop throws the COM error.

Steps to reproduce:

  1. Use MAUI 10.0.60 or later on Windows
  2. Place a RadCollectionView with an ItemTemplate or ControlTemplate that contains a RadBorder
  3. Run the app and display the collection

Expected: Collection renders correctly.
Actual: App crashes with REGDB_E_CLASSNOTREG.

Versions:

  • .NET MAUI: 10.0.60
  • Telerik UI for MAUI: 13.2.0 (also reproduced on 13.0.0)
  • Platform: Windows (WinUI 3)

Workaround:
Replacing the default ContentViewHandler mapping with a custom implementation that calls platformView.RemoveFromParent() on the native view instead of DisconnectHandler() on the virtual view avoids the crash.

Unplanned
Last Updated: 27 Mar 2025 10:26 by Craig

Color fades on scale transition to minimize or maximize other than 100% when corner radius is set to specific values. For example:

1,0,0,1,
1,1,0,0,
0,1,1,0
0,0,0,1, etc

Completed
Last Updated: 30 Oct 2023 07:54 by ADMIN
Release 6.4.0
The issue occurs in TabView header - text in the header is not displayed, ComboBox dropdown - content in the drop down in not displayed, Pickers content is missing, autocomplete suggestion list is missing. 

In general the issue affects controls that use Radborder internally. 

.NET 8 RC1 is used.