Displaying 1 result from an estimated 1 matches for "panelc".
Did you mean:
panel
2006 Dec 03
0
[778] trunk/wxruby2: Remove broken and deprecated LayoutConstraints, update samples & docs
...::RED)
- lc = Wx::LayoutConstraints.new()
- lc.top.same_as(self, Wx::LAYOUT_TOP, 10)
- lc.right.same_as(self, Wx::LAYOUT_RIGHT, 10)
- lc.bottom.percent_of(self, Wx::LAYOUT_BOTTOM, 30)
- lc.left.right_of(@panelA, 10)
- @panelB.set_constraints(lc)
-
- @panelC = Wx::Window.new(self, -1, Wx::DEFAULT_POSITION, Wx::DEFAULT_SIZE,
- Wx::SIMPLE_BORDER)
- @panelC.set_background_colour(Wx::WHITE)
- lc = Wx::LayoutConstraints.new()
- lc.top.below(@panelB, 10)
- lc.right.same_as(self, Wx::LAYOUT_RIGHT, 10)...