Lilly has asked for the wisdom of the Perl Monks concerning the following question:

Hi,
I am trying to create an UI in windows application (by Tk module) widgets aligned using grid concept.
I have tried to create combobox, listbox, textbox, label in a grid G1. Now in the grid G1, I have to create a LabelFrame (F1) and inside F1 I have align 4 checkboxes, a textbox and combo box, one below the other.
In order to use it, I want to use a grid inside that LabelFrame(F1).
What should I do for this?
Regards,
Suman
  • Comment on How to bring a grid under a frame which itself is under another grid?

Replies are listed 'Best First'.
Re: How to bring a grid under a frame which itself is under another grid?
by Anonymous Monk on Apr 24, 2009 at 07:21 UTC
    What GUI toolkit are you using? It should be as simple as positioning frame2 inside grid1 (maybe with requirement to create frame2 as child of frame1)
      Hi,
      I am trying to create an UI in windows application (by Tk module) widgets aligned using grid concept.
      I have tried to create combobox, listbox, textbox, label in a grid G1. Now in the grid G1, I have to create a LabelFrame (F1) and inside F1 I have align 4 checkboxes, a textbox and combo box, one below the other.
      In order to use it, I want to use a grid inside that LabelFrame(F1).
      What should I do for this?
      Regards,
      SUman