Label
Introduction
Label provides a way to display a string to the user. Unlike TextBox, Labels cannot be changed by typing on the keyboard.
Code Example: Adding a Label
The following code adds a Label instance to the root:
var label = new Label();
label.AddToRoot();
label.Text = "This is a Gum label";

Last updated
Was this helpful?