CoDriven Advanced UI documentation

Go back

CmLabel

CmLabel

CmLabel is a button control. It's based on Button control from UI Toolkit.

    CmLabel label = new CmLabel();

Style CmLabel elements

CmLabel modifiers contains only one element to style - the "Label"

    public class CmLabelModifiers : ICmControlModifiers
    {
        public CmLabelModifiers Label(CmModifierText modifier)
    }

When you open UI Toolkit Debugger then you will see that label is not container and has only one element to style - the label itself, so I have added only one Label modifier which accept CmModifierText to style label text and background because CmModifierText is extensions of CmModifierBackground

label.png

here is example styling

    public CmLabel OptionButton(bool enabled, string text, string name)
    {
        // create button somewhere
        var label = new CmLabel(text, cmUIEventsHandler: getUIEventsHandler());
        label.SetName(name);
        label.SetEnabled(enabled);

        label.SetStyle(GetTheme().StyleLabel);
        return button;
    }

    // in your theme

    public ICmControlModifiers StyleLabel()
    {
        var modifiers = CmLabel.GetModifiersBuilder();
        return modifiers.Label(new CmModifierText(CmSelector.DefaultState)
            .WidthWrapContent()
            .HeightWrapContent()
            .TextColorRGBA(Color.white)
            .TextFontSize(20)
        );
    }

to learn about modifiers for all controls click here

// events - under construction