Displaying 1 result from an estimated 1 matches for "paneld".
Did you mean:
panel
2006 Dec 03
0
[778] trunk/wxruby2: Remove broken and deprecated LayoutConstraints, update samples & docs
...tton.new(@panelB, 100, '' Panel B '')
- lc = Wx::LayoutConstraints.new()
- lc.top.same_as(@panelB, Wx::LAYOUT_TOP, 2)
- lc.right.same_as(@panelB, Wx::LAYOUT_RIGHT, 4)
- lc.height.as_is()
- lc.width.as_is()
- b.set_constraints(lc)
-
- @panelD = Wx::Window.new(@panelC, -1, Wx::DEFAULT_POSITION, Wx::DEFAULT_SIZE,
- Wx::SIMPLE_BORDER)
- @panelD.set_background_colour(Wx::GREEN)
- Wx::StaticText.new(@panelD, -1, "Panel D", Wx::Point.new(4, 4)).set_background_colour(Wx::GREEN)
-
- b =...