in reply to How to bring a grid under a frame which itself is under another grid?

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)
  • Comment on Re: How to bring a grid under a frame which itself is under another grid?

Replies are listed 'Best First'.
Re^2: How to bring a grid under a frame which itself is under another grid?
by Lilly (Initiate) on Apr 24, 2009 at 10:01 UTC
    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