Show
Introduction
Code Example
Button button;
void CustomInitialize()
{
button = new Button();
button.Text = "I am a button created in code";
button.X = 100;
button.Y = 100;
button.Show();
}void CustomDestroy()
{
button.Visual.RemoveFromManagers();
}Last updated
Was this helpful?