kuza55 / minimalcomps

Automatically exported from code.google.com/p/minimalcomps

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Components added inside a Window do not disappear when minimized

GoogleCodeExporter opened this issue · comments

What steps will reproduce the problem?
1. Create Window
2. Add various components
3. Use minimize button

What is the expected output? What do you see instead?
Window closes and components become invisible. Upon reopening, the window
is on top of the components.



Original issue reported on code.google.com by keepsake...@gmail.com on 19 Dec 2010 at 12:51

You need to add the subcomponents to the window's content property.


var win:Window = new Window(this, 100, 100, "window");
win.hasMinimizeButton = true;
new PushButton(win.content, 10, 10, "click me");

Original comment by k...@bit-101.com on 31 Dec 2010 at 1:23

  • Changed state: Invalid