Description:
I recently upgraded my .NET Framework project to .NET Core 8. However, I'm now encountering an issue where the RadListView component is not recognized. I've tried adding the necessary NuGet packages, but the error persists.
The specific error message I'm receiving is:
CS0234: The type or namespace name 'RadListView' does not exist in the namespace 'Telerik WinControls.UI' (are you missing a reference?)
I've attached a screenshot of the error message for your reference.
I'm using the Telerik RadControls for WinForms library, and I've made sure to install the latest version of the NuGet package (Telerik.WinControls.dll). I've also tried adding the following using directives:
using Telerik.WinControls.UI;
using Telerik.WinControls;
But the error persists.
I've searched for similar issues online, but I haven't been able to find a solution that works for me. I'm hoping someone here can help me troubleshoot this problem.
Additional details:
Any help would be greatly appreciated.
Here are some additional things you can include in your forum post:
I hope this helps!
I have a RadSplitButton that I build menuItems programmatically. But, I can't figure out how to capture a click event when the menuItem is clicked.
The reason I'm doing it this way is because I have a RadbuttonTextbox with the RadSplitButton on its LeftButtonsItems collection.
The RadSplitButton contains previously entered data in the TextBox. The textbox is a Key field for the form, so the radSplitbutton would be perfect for this use if I can get it to work.