C++ class doesn't show up in blueprint menu

How did you create your class? Did you create in Visual Studio?
It is missing the ‘U’ prefix as posted by @Recursoft and some includes:


#pragma once

#include "CoreMinimal.h"
#include "Blueprint/UserWidget.h"
#include "WidgetBinder.generated.h"

UCLASS(Abstract)
class UWidgetBinder : public UUserWidget
{
    ...
}