Home
last modified time | relevance | path

Searched refs:grid_rowconfigure (Results 1 – 14 of 14) sorted by relevance

/external/python/cpython2/Lib/lib-tk/test/test_tkinter/
Dtest_geometry_managers.py492 self.root.grid_rowconfigure(i, weight=0, minsize=0, pad=0, uniform='')
665 self.root.grid_rowconfigure()
666 self.assertEqual(self.root.grid_rowconfigure(0),
669 self.root.grid_rowconfigure(0, 'foo')
670 self.root.grid_rowconfigure((0, 3), weight=2)
673 self.root.grid_rowconfigure((0, 3))
677 self.root.grid_rowconfigure('all', weight=3)
679 self.root.grid_rowconfigure('all')
680 self.assertEqual(self.root.grid_rowconfigure(0, 'weight'), 3)
681 self.assertEqual(self.root.grid_rowconfigure(3, 'weight'), 2)
[all …]
/external/python/cpython3/Lib/tkinter/test/test_tkinter/
Dtest_geometry_managers.py492 self.root.grid_rowconfigure(i, weight=0, minsize=0, pad=0, uniform='')
667 self.root.grid_rowconfigure()
668 self.assertEqual(self.root.grid_rowconfigure(0),
671 self.root.grid_rowconfigure(0, 'foo')
672 self.root.grid_rowconfigure((0, 3), weight=2)
675 self.root.grid_rowconfigure((0, 3))
679 self.root.grid_rowconfigure('all', weight=3)
681 self.root.grid_rowconfigure('all')
682 self.assertEqual(self.root.grid_rowconfigure(0, 'weight'), 3)
683 self.assertEqual(self.root.grid_rowconfigure(3, 'weight'), 2)
[all …]
/external/python/cpython2/Demo/tkinter/ttk/
Dlistbox_scrollcmd.py32 root.grid_rowconfigure(0, weight=1)
Dtreeview_multicolumn.py72 container.grid_rowconfigure(0, weight=1)
Ddirbrowser.py91 root.grid_rowconfigure(0, weight=1)
/external/python/cpython3/Lib/idlelib/
Dtextview.py51 self.grid_rowconfigure(0, weight=1)
Dsearchbase.py90 top.grid_rowconfigure(0, weight=100)
Dhelp.py246 self.grid_rowconfigure(0, weight=1)
/external/python/cpython2/Lib/idlelib/
Dhelp.py232 self.grid_rowconfigure(0, weight=1)
/external/python/cpython2/Demo/turtle/
DturtleDemo.py60 root.grid_rowconfigure(1, weight=1)
/external/python/cpython3/Lib/turtledemo/
D__main__.py150 root.grid_rowconfigure(0, weight=1)
/external/python/cpython2/Lib/lib-tk/
DTkinter.py1468 def grid_rowconfigure(self, index, cnf={}, **kw): member in Misc
1475 rowconfigure = grid_rowconfigure
2055 rowconfigure = grid_rowconfigure = Misc.grid_rowconfigure
/external/python/cpython3/Lib/tkinter/
D__init__.py1799 def grid_rowconfigure(self, index, cnf={}, **kw): member in Misc
1807 rowconfigure = grid_rowconfigure
2514 rowconfigure = grid_rowconfigure = Misc.grid_rowconfigure
/external/python/cpython2/Misc/NEWS.d/
D2.7.7rc1.rst338 Fixed grid_columnconfigure() and grid_rowconfigure() methods of Tkinter