ContainerRuntime
Introduction
Example - Creating a ContainerRuntime
var container = new ContainerRuntime();
container.Width = 150; // by default, containers use absolute width...
container.Height = 150; // ...and height.
container.AddToManagers(SystemManagers.Default, null);Children (Containers as Parents)
var parentContainer = new ContainerRuntime();
parentContainer.AddToManagers(SystemManagers.Default, null);
var childText = new TextRuntime();
childText.Text = "I am a child TextRuntime";
parentContainer.Children.Add(childText);Last updated
Was this helpful?

