Advertisement
Uno-Dan

Untitled

Jun 30th, 2018
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.73 KB | None | 0 0
  1.             forms = {
  2.                 'root': {
  3.                     'row': 0,
  4.                     'column': 0,
  5.                     'type': 'Frame',
  6.                     'label': None,
  7.                     'children': {
  8.                         'key': {
  9.                             'row': 0,
  10.                             'column': 0,
  11.                             'label': 'ID',
  12.                             'type': 'Combobox',
  13.                             'width': None,
  14.                             'items': ('Test One', 'Test Two', 'Test Three'),
  15.                             'default': None,
  16.                             'command': 'main.form_open',
  17.                         },
  18.                     },
  19.                 },
  20.             }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement