Stetic.Grid.AppendLabel C# (CSharp) Method

AppendLabel() public method

public AppendLabel ( string text ) : void
text string
return void
        public void AppendLabel(string text)
        {
            Gtk.Label label = new Label (text);
            label.UseMarkup = true;
            label.Justify = Justification.Left;
            label.Xalign = 0;
            Append (label);
        }