We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5400eaa commit faa04caCopy full SHA for faa04ca
1 file changed
Local/UserInterface/ImGuiSample/UserInterface/Controls/TestWindow.cs
@@ -4,8 +4,8 @@ public class TestWindow : BaseWindow
4
{
5
public TestWindow() : base("Test Window")
6
7
- Controls.Add(new ImGuiPanel("Panel 1"));
8
- Controls.Add(new ImGuiPanel("Panel 2"));
9
- Controls.Add(new ImGuiPanel("Panel 3"));
+ Controls.Add(new ImGuiPanel("Panel 1") { Controls = { new TextControl { Text = "This is some text inside Panel 1." } } });
+ Controls.Add(new ImGuiPanel("Panel 2") { Controls = { new TextControl { Text = "This is some text inside Panel 2." } } });
+ Controls.Add(new ImGuiPanel("Panel 3") { Controls = { new TextControl { Text = "This is some text inside Panel 3." } } });
10
}
11
0 commit comments