It sounds like you're encountering a design-time error when adding a TreeMenuItem to the TreeNavigator in your VB.NET (.NET 8) project using Syncfusion controls.
Here are a few quick suggestions to resolve the issue:
-
Ensure Compatibility: Confirm that the Syncfusion version you're using supports .NET 8. Some older versions might not fully support it.
-
Add Programmatically: Instead of using the designer, try adding
TreeMenuItems in code:vb.netDim item As New TreeMenuItem() item.Header = "Sample Item" TreeNavigator1.Items.Add(item) -
Check Toolbox References: Make sure the Syncfusion controls are properly added to your toolbox and referenced in your project.
-
Update Visual Studio & Syncfusion: Keep both Visual Studio and the Syncfusion NuGet packages up to date to avoid designer incompatibilities.
If the issue persists, check the Output or Error List in Visual Studio for more details, or share the specific error message shown.