Is there a Winforms example of a RadCheckedDropDownList as an Editor for a PropertyGrid?
There is a sample for WPF, https://docs.telerik.com/devtools/wpf/controls/radpropertygrid/features/radenumeditor
There is sample for Winforms Gridview, https://docs.telerik.com/devtools/winforms/controls/dropdown-listcontrol-and-checkeddropdownlist/checkeddropdownlist/how-to/use-as-radgridview-editor
but nothing for Winforms PropertyGrid.
How would I get the following to appear as a checked drop down editor inside a property grid in winforms?
using CommunityToolkit.Mvvm.ComponentModel;
namespace ProjectXYZ.Model.Enums;
public enum BroadcastPlanEnum
{
Plan1, Plan2, Plan3, Plan4, Plan5, Plan6
}
public sealed partial class BroadcastPlanActive : ObservableObject
{
[ObservableProperty]
private BroadcastPlanEnum broadcastPlan;
[ObservableProperty]
private bool selected;
}
