I'm having a look at NuclexGui at the moment. It seems really solid but some of the example code doesn't seem to match up with what I got from Nuget.
Here's what I mean:
This example code says on line 106 Style = "label-title"
and looking at the actual class for GuiLabelControl, it's clearly there on line 20.
The definition from the nuget reference is as follows:
namespace MonoGame.Extended.NuclexGui.Controls
{
public class GuiLabelControl : GuiControl
{
public string Text;
public GuiLabelControl();
public GuiLabelControl(string text);
}
}
As you can see in my code, there is no definition for Style.
I'm not sure how big of a difference this makes, but inconsistencies always scare me
Just thought I'd mention it, while I'm testing things out.