0

I created a container which has a GridLayout as its layout manager. I set 10 lines and 2 columns for the grid. I want to reduce the space gap between the grid lines. How to achieve that ?

bharath
  • 14,283
  • 16
  • 57
  • 95

1 Answers1

1

Set the margin of the components within the layout to 0.

Shai Almog
  • 51,749
  • 5
  • 35
  • 65
  • Ok , I get the UnselectedStyle and SelectedStyle of each component within the layout , and I set their margin to 0,0,0,0. –  Jun 29 '11 at 06:12