Merge pull request #4230 from PySimpleGUI/Dev-latest
Added the Window.key_dict property
This commit is contained in:
commit
91f6e90814
|
@ -10690,6 +10690,17 @@ Hides the window from the screen and the task bar
|
|||
hide()
|
||||
```
|
||||
|
||||
### key_dict
|
||||
|
||||
#### property: key_dict
|
||||
|
||||
Returns a dictionary with all keys and their corresponding elements
|
||||
{ key : Element }
|
||||
|
||||
|Type|Name|Meaning|
|
||||
|---|---|---|
|
||||
|Dict[Any, Element]| **return** | Dictionary of keys and elements |
|
||||
|
||||
### layout
|
||||
|
||||
Second of two preferred ways of telling a Window what its layout is. The other way is to pass the layout as
|
||||
|
|
|
@ -2336,6 +2336,9 @@ The following methods are here for backwards compatibility reference. You will
|
|||
### hide
|
||||
<!-- <+Window.hide+> -->
|
||||
|
||||
### key_dict
|
||||
<!-- <+Window.key_dict+> -->
|
||||
|
||||
### layout
|
||||
<!-- <+Window.layout+> -->
|
||||
|
||||
|
|
|
@ -10690,6 +10690,17 @@ Hides the window from the screen and the task bar
|
|||
hide()
|
||||
```
|
||||
|
||||
### key_dict
|
||||
|
||||
#### property: key_dict
|
||||
|
||||
Returns a dictionary with all keys and their corresponding elements
|
||||
{ key : Element }
|
||||
|
||||
|Type|Name|Meaning|
|
||||
|---|---|---|
|
||||
|Dict[Any, Element]| **return** | Dictionary of keys and elements |
|
||||
|
||||
### layout
|
||||
|
||||
Second of two preferred ways of telling a Window what its layout is. The other way is to pass the layout as
|
||||
|
|
Loading…
Reference in New Issue